Class: LogStash::Util::WrappedAckedQueue::WriteBatch
- Inherits:
-
Object
- Object
- LogStash::Util::WrappedAckedQueue::WriteBatch
- Defined in:
- lib/logstash/util/wrapped_acked_queue.rb
Instance Method Summary collapse
- #each(&blk) ⇒ Object
-
#initialize ⇒ WriteBatch
constructor
A new instance of WriteBatch.
- #push(event) ⇒ Object (also: #<<)
- #size ⇒ Object
Constructor Details
#initialize ⇒ WriteBatch
Returns a new instance of WriteBatch.
369 370 371 |
# File 'lib/logstash/util/wrapped_acked_queue.rb', line 369 def initialize @events = [] end |
Instance Method Details
#each(&blk) ⇒ Object
382 383 384 385 386 |
# File 'lib/logstash/util/wrapped_acked_queue.rb', line 382 def each(&blk) @events.each do |e| blk.call(e) end end |
#push(event) ⇒ Object Also known as: <<
377 378 379 |
# File 'lib/logstash/util/wrapped_acked_queue.rb', line 377 def push(event) @events.push(event) end |
#size ⇒ Object
373 374 375 |
# File 'lib/logstash/util/wrapped_acked_queue.rb', line 373 def size @events.size end |