class LogStash::Inputs::Threadable

This is the threadable class for logstash inputs. Use this class in your inputs if it can support multiple threads

Public Class Methods

new(params) click to toggle source
Calls superclass method LogStash::Inputs::Base::new
# File lib/logstash/inputs/threadable.rb, line 13
def initialize(params)
  super
  @threadable = true
end