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.



351
352
353
# File 'lib/logstash/util/wrapped_acked_queue.rb', line 351

def initialize(queue)
  @queue = queue
end

Instance Method Details

#get_new_batchObject



355
356
357
# File 'lib/logstash/util/wrapped_acked_queue.rb', line 355

def get_new_batch
  WriteBatch.new
end

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



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

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



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

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