Class: FluQ::Input::Noop
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
-
#run ⇒ Object
Start the server.
Methods inherited from Base
#description, #initialize, #name, #process
Methods included from Mixins::Loggable
Constructor Details
This class inherits a constructor from FluQ::Input::Base
Instance Method Details
#run ⇒ Object
Start the server
4 5 6 7 |
# File 'lib/fluq/input/noop.rb', line 4 def run super loop { sleep(1e9) } end |