Sha256: 8a458a6839718da29da2f87dc2194cef2956a08c58e2e12c9e1ca57999fe7db6
Contents?: true
Size: 573 Bytes
Versions: 18
Compression:
Stored size: 573 Bytes
Contents
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 = result_name.read_string end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems