class Kafka::Protocol::AddPartitionsToTxnResponse::TopicPartitionsError

Attributes

partitions[R]
topic[R]

Public Class Methods

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