class Kafka::Protocol::ListOffsetResponse::PartitionOffsetInfo

Attributes

error_code[R]
offset[R]
partition[R]
timestamp[R]

Public Class Methods

new(partition:, error_code:, timestamp:, offset:) click to toggle source
# File lib/kafka/protocol/list_offset_response.rb, line 31
def initialize(partition:, error_code:, timestamp:, offset:)
  @partition = partition
  @error_code = error_code
  @timestamp = timestamp
  @offset = offset
end