Sha256: e9a792ae7e730702b8d2115ec19c20e84a2ceb05010dfe4255635e4f555d48e5
Contents?: true
Size: 305 Bytes
Versions: 28
Compression:
Stored size: 305 Bytes
Contents
module Messaging module Routing # Internal: Used for enqueing background jobs instead of calling the handler directly class EnqueuedRoute < Route def initialize(pattern, handler) super @handler = EnqueueMessageHandler.new(handler).method(:call) end end end end
Version data entries
28 entries across 28 versions & 1 rubygems