class OFlow::Actors::Ignore
Does nothing but can be used to terminate a Link
to assure all output from a Task
terminate somewhere.
Public Class Methods
new(task, options)
click to toggle source
Calls superclass method
OFlow::Actor::new
# File lib/oflow/actors/ignore.rb, line 8 def initialize(task, options) super end
Public Instance Methods
perform(op, box)
click to toggle source
# File lib/oflow/actors/ignore.rb, line 12 def perform(op, box) # ignore end
with_own_thread()
click to toggle source
# File lib/oflow/actors/ignore.rb, line 16 def with_own_thread() false end