class Kafka::ProcessingError

There was an error processing a message.

Attributes

offset[R]
partition[R]
topic[R]

Public Class Methods

new(topic, partition, offset) click to toggle source
Calls superclass method
# File lib/kafka.rb, line 13
def initialize(topic, partition, offset)
  @topic = topic
  @partition = partition
  @offset = offset

  super()
end