class Kafka::PendingMessage

def ==(other)

def ==(other)
  @value == other.value &&
    @key == other.key &&
    @topic == other.topic &&
    @partition == other.partition &&
    @partition_key == other.partition_key &&
    @create_time == other.create_time &&
    @bytesize == other.bytesize
end