Class: LogStash::Inputs::Threadable

Inherits:
Base show all
Defined in:
lib/logstash/inputs/threadable.rb

Overview

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

Constant Summary

Constants included from Config::Mixin

Config::Mixin::ALLOW_ENV_FLAG, Config::Mixin::ENV_PLACEHOLDER_REGEX, Config::Mixin::PLUGIN_VERSION_0_9_0, Config::Mixin::PLUGIN_VERSION_1_0_0

Constants inherited from Plugin

Plugin::NL

Instance Attribute Summary

Attributes inherited from Base

#params, #threadable

Attributes included from Config::Mixin

#config, #original_params

Attributes inherited from Plugin

#logger, #params

Instance Method Summary collapse

Methods inherited from Base

#do_stop, #register, #stop, #stop?, #tag

Methods included from Config::Mixin

#config_init, included, #replace_env_placeholders

Methods inherited from Plugin

#close, #debug_info, #do_close, #eql?, #hash, #inspect, lookup, #to_s

Constructor Details

#initialize(params) ⇒ Threadable

Returns a new instance of Threadable.



13
14
15
16
# File 'lib/logstash/inputs/threadable.rb', line 13

def initialize(params)
  super
  @threadable = true
end