Sha256: 32fb2029a0485b483e165c918447f152642b237bb3041ab472a3468a3931df76
Contents?: true
Size: 832 Bytes
Versions: 2
Compression:
Stored size: 832 Bytes
Contents
# This class is responsible for dispatching the messages to the appropriate handler. # The handlers must be registered with the dispatcher. # Tha handlers need to be modules that implement the process method. # What handler to dispatch the message to is figured out from the subject of the message. require 'forwardable' module DispatchRider class Dispatcher extend Forwardable include Callbacks::Support attr_reader :handler_registrar def_delegators :handler_registrar, :register, :fetch, :unregister def initialize @handler_registrar = Registrars::Handler.new end def dispatch(message) callbacks.invoke(:dispatch_message, message) do handler_registrar.fetch(message.subject).new.do_process(message) end true # success => true (delete message) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
dispatch-rider-2.1.0 | lib/dispatch-rider/dispatcher.rb |
dispatch-rider-2.0.0 | lib/dispatch-rider/dispatcher.rb |