Class: DispatchRider::Callbacks::Storage
- Inherits:
-
Object
- Object
- DispatchRider::Callbacks::Storage
- Defined in:
- lib/dispatch-rider/callbacks/storage.rb
Overview
Storage for callbacks.
Instance Method Summary collapse
- #after(event, block_param = nil, &block) ⇒ Object
- #around(event, block_param = nil, &block) ⇒ Object
- #before(event, block_param = nil, &block) ⇒ Object
- #for(event) ⇒ Object
-
#initialize ⇒ Storage
constructor
A new instance of Storage.
Constructor Details
#initialize ⇒ Storage
Returns a new instance of Storage.
7 8 9 |
# File 'lib/dispatch-rider/callbacks/storage.rb', line 7 def initialize @callbacks = Hash.new { |storage, key| storage[key] = [] } end |
Instance Method Details
#after(event, block_param = nil, &block) ⇒ Object
24 25 26 27 28 29 30 31 32 |
# File 'lib/dispatch-rider/callbacks/storage.rb', line 24 def after(event, block_param = nil, &block) around(event) do |job, *args| job.call ensure (block_param || block).call(*args) end end |
#around(event, block_param = nil, &block) ⇒ Object
37 38 39 |
# File 'lib/dispatch-rider/callbacks/storage.rb', line 37 def around(event, block_param = nil, &block) @callbacks[event] << (block_param || block) end |
#before(event, block_param = nil, &block) ⇒ Object
14 15 16 17 18 19 |
# File 'lib/dispatch-rider/callbacks/storage.rb', line 14 def before(event, block_param = nil, &block) around(event) do |job, *args| (block_param || block).call(*args) job.call end end |
#for(event) ⇒ Object
42 43 44 |
# File 'lib/dispatch-rider/callbacks/storage.rb', line 42 def for(event) @callbacks[event] end |