Class: RailsEventStore::Middleware
- Inherits:
-
Object
- Object
- RailsEventStore::Middleware
- Defined in:
- lib/rails_event_store/middleware.rb
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app) ⇒ Middleware
constructor
A new instance of Middleware.
Constructor Details
#initialize(app) ⇒ Middleware
Returns a new instance of Middleware.
5 6 7 |
# File 'lib/rails_event_store/middleware.rb', line 5 def initialize(app) @app = app end |
Instance Method Details
#call(env) ⇒ Object
9 10 11 12 13 14 15 |
# File 'lib/rails_event_store/middleware.rb', line 9 def call(env) if config.respond_to?(:event_store) config.event_store.(env) { @app.call(env) } else @app.call(env) end end |