Class: Aruba::EventBus::NameResolver::ClassResolver
- Inherits:
-
Object
- Object
- Aruba::EventBus::NameResolver::ClassResolver
- Defined in:
- lib/aruba/event_bus/name_resolver.rb
Overview
Convert a class in to an event class
Class Method Summary collapse
- .match?(event_id) ⇒ Boolean
-
.supports ⇒ Object
Which types are supported.
Instance Method Summary collapse
Class Method Details
.match?(event_id) ⇒ Boolean
59 60 61 |
# File 'lib/aruba/event_bus/name_resolver.rb', line 59 def match?(event_id) event_id.is_a? Class end |
.supports ⇒ Object
Which types are supported
64 65 66 |
# File 'lib/aruba/event_bus/name_resolver.rb', line 64 def supports [Class] end |
Instance Method Details
#transform(_, event_id) ⇒ Object
69 70 71 |
# File 'lib/aruba/event_bus/name_resolver.rb', line 69 def transform(_, event_id) event_id end |