class Kafka::Protocol::FetchResponse::FetchedTopic

Attributes

name[R]
partitions[R]

Public Class Methods

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