Sha256: 6cc3376f7ac241c87ee95e7f9685519a708fdaf619b77a9bbf0a03b9787f10cb
Contents?: true
Size: 589 Bytes
Versions: 32
Compression:
Stored size: 589 Bytes
Contents
# frozen_string_literal: true module Rdkafka class Admin class DeleteTopicReport # Any error message generated from the DeleteTopic # @return [String] attr_reader :error_string # The name of the topic deleted # @return [String] attr_reader :result_name def initialize(error_string, result_name) if error_string != FFI::Pointer::NULL @error_string = error_string.read_string end if result_name != FFI::Pointer::NULL @result_name = result_name.read_string end end end end end
Version data entries
32 entries across 32 versions & 2 rubygems