Sha256: e47f8db34501dab0a7ff7f665cad74bbd03fea0ec6c5479b82c5afeb966b39ad
Contents?: true
Size: 460 Bytes
Versions: 31
Compression:
Stored size: 460 Bytes
Contents
# frozen_string_literal: true module Rdkafka class Admin # A simple binding that represents the requested config resource class ConfigResourceBindingResult attr_reader :name, :type, :configs, :configs_count def initialize(config_resource_ptr) ffi_binding = Bindings::ConfigResource.new(config_resource_ptr) @name = ffi_binding[:name] @type = ffi_binding[:type] @configs = [] end end end end
Version data entries
31 entries across 31 versions & 2 rubygems