Class: Sequent::Core::Helpers::MessageRouter
- Inherits:
-
Object
- Object
- Sequent::Core::Helpers::MessageRouter
- Defined in:
- lib/sequent/core/helpers/message_router.rb
Instance Attribute Summary collapse
-
#instanceof_routes ⇒ Object
readonly
Returns the value of attribute instanceof_routes.
-
#routes ⇒ Object
readonly
Returns the value of attribute routes.
Instance Method Summary collapse
-
#clear_routes ⇒ Object
Removes all routes from the router.
-
#initialize ⇒ MessageRouter
constructor
A new instance of MessageRouter.
-
#match_message(message) ⇒ Object
Returns a set of handlers that match the given message, or an empty set when none match.
-
#matches_message?(message) ⇒ Boolean
Returns true when there is at least one handler for the given message, or false otherwise.
-
#register_matchers(*matchers, handler) ⇒ Object
Registers a handler for the given matchers.
Constructor Details
#initialize ⇒ MessageRouter
Returns a new instance of MessageRouter.
12 13 14 |
# File 'lib/sequent/core/helpers/message_router.rb', line 12 def initialize clear_routes end |
Instance Attribute Details
#instanceof_routes ⇒ Object (readonly)
Returns the value of attribute instanceof_routes.
10 11 12 |
# File 'lib/sequent/core/helpers/message_router.rb', line 10 def instanceof_routes @instanceof_routes end |
#routes ⇒ Object (readonly)
Returns the value of attribute routes.
10 11 12 |
# File 'lib/sequent/core/helpers/message_router.rb', line 10 def routes @routes end |
Instance Method Details
#clear_routes ⇒ Object
Removes all routes from the router.
57 58 59 60 |
# File 'lib/sequent/core/helpers/message_router.rb', line 57 def clear_routes @instanceof_routes = {} @routes = {} end |
#match_message(message) ⇒ Object
Returns a set of handlers that match the given message, or an empty set when none match.
37 38 39 40 41 42 43 44 |
# File 'lib/sequent/core/helpers/message_router.rb', line 37 def () result = Set.new result.merge(@instanceof_routes[.class]) if @instanceof_routes.include?(.class) @routes.each do |matcher, handlers| result.merge(handlers) if matcher.() end result end |
#matches_message?(message) ⇒ Boolean
Returns true when there is at least one handler for the given message, or false otherwise.
49 50 51 52 |
# File 'lib/sequent/core/helpers/message_router.rb', line 49 def () @instanceof_routes.include?(.class) || @routes.keys.any? { |matcher| matcher.() } end |
#register_matchers(*matchers, handler) ⇒ Object
Registers a handler for the given matchers.
A matcher must implement #matches_message?(message) and return a truthy value when it matches, or a falsey value otherwise.
22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/sequent/core/helpers/message_router.rb', line 22 def register_matchers(*matchers, handler) fail ArgumentError, 'handler is required' if handler.nil? matchers.each do |matcher| if matcher.is_a?(MessageMatchers::InstanceOf) (@instanceof_routes[matcher.expected_class] ||= Set.new) << handler else (@routes[matcher] ||= Set.new) << handler end end end |