class Kafka::Protocol::ListOffsetResponse::TopicOffsetInfo

Attributes

name[R]
partition_offsets[R]

Public Class Methods

new(name:, partition_offsets:) click to toggle source
# File lib/kafka/protocol/list_offset_response.rb, line 22
def initialize(name:, partition_offsets:)
  @name = name
  @partition_offsets = partition_offsets
end