Class: Eventboss::Middleware::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/eventboss/middleware.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ Base

Returns a new instance of Base.



35
36
37
# File 'lib/eventboss/middleware.rb', line 35

def initialize(options)
  @options = options
end

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



33
34
35
# File 'lib/eventboss/middleware.rb', line 33

def options
  @options
end

Instance Method Details

#callObject



39
40
41
# File 'lib/eventboss/middleware.rb', line 39

def call
  raise 'Not implemented'
end