Module: Rev::Meta
- Included in:
- IO, IOWatcher, TimerWatcher
- Defined in:
- lib/rev/meta.rb
Instance Method Summary collapse
-
#event_callback(*methods) ⇒ Object
Define callbacks whose behavior can be changed on-the-fly per instance.
-
#watcher_delegate(proxy_var) ⇒ Object
Use an alternate watcher with the attach/detach/enable/disable methods if it is presently assigned.
Instance Method Details
#event_callback(*methods) ⇒ Object
Define callbacks whose behavior can be changed on-the-fly per instance. This is done by giving a block to the callback method, which is captured as a proc and stored for later. If the method is called without a block, the stored block is executed if present, otherwise it’s a noop.
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/rev/meta.rb', line 32 def event_callback(*methods) methods.each do |method| module_eval <<-EOD def #{method}(*args, &block) if block @#{method}_callback = block return end if @#{method}_callback instance_exec(*args, &@#{method}_callback) end end EOD end end |
#watcher_delegate(proxy_var) ⇒ Object
Use an alternate watcher with the attach/detach/enable/disable methods if it is presently assigned. This is useful if you are waiting for an event to occur before the current watcher can be used in earnest, such as making an outgoing TCP connection.
13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# File 'lib/rev/meta.rb', line 13 def watcher_delegate(proxy_var) %w{attach detach enable disable}.each do |method| module_eval <<-EOD def #{method}(*args) if #{proxy_var} #{proxy_var}.#{method}(*args) return self end super end EOD end end |