Class: Aruba::EventBus::NameResolver::ClassResolver

Inherits:
Object
  • Object
show all
Defined in:
lib/aruba/event_bus/name_resolver.rb

Overview

Convert a class in to an event class

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.match?(event_id) ⇒ Boolean

Returns:

  • (Boolean)


59
60
61
# File 'lib/aruba/event_bus/name_resolver.rb', line 59

def match?(event_id)
  event_id.is_a? Class
end

.supportsObject

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