Method: LogStash::Stomp::Handler#initialize
- Defined in:
- lib/logstash/stomp/handler.rb
#initialize(*args) ⇒ Handler
Returns a new instance of Handler.
14 15 16 17 18 19 20 21 22 |
# File 'lib/logstash/stomp/handler.rb', line 14 def initialize(*args) super @input = args[0] @logger = args[1] @url = args[2] @should_subscribe = true @ready = false end |