Class: FluQ::Input::Noop

Inherits:
Base
  • Object
show all
Defined in:
lib/fluq/input/noop.rb

Instance Attribute Summary

Attributes inherited from Base

#config, #worker

Instance Method Summary collapse

Methods inherited from Base

#description, #initialize, #name, #process

Methods included from Mixins::Loggable

#logger

Constructor Details

This class inherits a constructor from FluQ::Input::Base

Instance Method Details

#runObject

Start the server



4
5
6
7
# File 'lib/fluq/input/noop.rb', line 4

def run
  super
  loop { sleep(1e9) }
end