Sha256: 304a6271466786982c492ee4307d042180283519c4359da4487b674c68d0b61c
Contents?: true
Size: 747 Bytes
Versions: 30
Compression:
Stored size: 747 Bytes
Contents
# frozen_string_literal: true module Rdkafka class Admin class CreateTopicHandle < AbstractHandle layout :pending, :bool, :response, :int, :error_string, :pointer, :result_name, :pointer # @return [String] the name of the operation def operation_name "create topic" end # @return [Boolean] whether the create topic was successful def create_result CreateTopicReport.new(self[:error_string], self[:result_name]) end def raise_error raise RdkafkaError.new( self[:response], broker_message: CreateTopicReport.new(self[:error_string], self[:result_name]).error_string ) end end end end
Version data entries
30 entries across 30 versions & 2 rubygems