Class: LogStash::Util::WrappedAckedQueue::WriteClient

Inherits:
Object
  • Object
show all
Defined in:
lib/logstash/util/wrapped_acked_queue.rb

Instance Method Summary collapse

Constructor Details

#initialize(queue) ⇒ WriteClient

Returns a new instance of WriteClient.



360
361
362
# File 'lib/logstash/util/wrapped_acked_queue.rb', line 360

def initialize(queue)
  @queue = queue
end

Instance Method Details

#get_new_batchObject



364
365
366
# File 'lib/logstash/util/wrapped_acked_queue.rb', line 364

def get_new_batch
  WriteBatch.new
end

#push(event) ⇒ Object Also known as: <<



368
369
370
371
372
373
# File 'lib/logstash/util/wrapped_acked_queue.rb', line 368

def push(event)
  if @queue.closed?
    raise QueueClosedError.new("Attempted to write an event to a closed AckedQueue")
  end
  @queue.push(event)
end

#push_batch(batch) ⇒ Object



376
377
378
379
380
381
382
383
# File 'lib/logstash/util/wrapped_acked_queue.rb', line 376

def push_batch(batch)
  if @queue.closed?
    raise QueueClosedError.new("Attempted to write a batch to a closed AckedQueue")
  end
  batch.each do |event|
    push(event)
  end
end