Class: LogStash::Codecs::AutoFlushUnset
- Inherits:
-
Object
- Object
- LogStash::Codecs::AutoFlushUnset
- Defined in:
- lib/logstash/codecs/auto_flush.rb
Instance Method Summary collapse
- #finished? ⇒ Boolean
-
#initialize(mc, interval) ⇒ AutoFlushUnset
constructor
A new instance of AutoFlushUnset.
- #pending? ⇒ Boolean
- #start ⇒ Object
- #stop ⇒ Object
- #stopped? ⇒ Boolean
Constructor Details
#initialize(mc, interval) ⇒ AutoFlushUnset
Returns a new instance of AutoFlushUnset.
44 45 |
# File 'lib/logstash/codecs/auto_flush.rb', line 44 def initialize(mc, interval) end |
Instance Method Details
#finished? ⇒ Boolean
59 60 61 |
# File 'lib/logstash/codecs/auto_flush.rb', line 59 def finished? true end |
#pending? ⇒ Boolean
47 48 49 |
# File 'lib/logstash/codecs/auto_flush.rb', line 47 def pending? false end |
#start ⇒ Object
55 56 57 |
# File 'lib/logstash/codecs/auto_flush.rb', line 55 def start self end |
#stop ⇒ Object
63 64 65 |
# File 'lib/logstash/codecs/auto_flush.rb', line 63 def stop self end |
#stopped? ⇒ Boolean
51 52 53 |
# File 'lib/logstash/codecs/auto_flush.rb', line 51 def stopped? true end |