Sha256: a70f8301d6373ce017451e4fb2d30fd2ce89b6c66f503e9df762647599b704fd
Contents?: true
Size: 761 Bytes
Versions: 8
Compression:
Stored size: 761 Bytes
Contents
module Sidekiq module Extensions class Proxy < BasicObject def initialize(performable, target, at=nil) @performable = performable @target = target @at = at end def method_missing(name, *args) # Sidekiq has a limitation in that its message must be JSON. # JSON can't round trip real Ruby objects so we use YAML to # serialize the objects to a String. The YAML will be converted # to JSON and then deserialized on the other side back into a # Ruby object. obj = [@target, name, args] if @at @performable.perform_at(@at, ::YAML.dump(obj)) else @performable.perform_async(::YAML.dump(obj)) end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems