module Qpid::Proton::Util::Wrapper
@private
Attributes
impl[RW]
Public Class Methods
included(base)
click to toggle source
# File lib/util/wrapper.rb, line 120 def self.included(base) base.extend(SWIGClassHelper) end
registry()
click to toggle source
# File lib/util/wrapper.rb, line 139 def self.registry @registry ||= {} end
Public Instance Methods
inspect()
click to toggle source
# File lib/util/wrapper.rb, line 126 def inspect return "#{self.class}<nil>" unless @impl pstr = Cproton.pn_string("") begin Cproton.pn_inspect(@impl, pstr) return Cproton.pn_string_get(pstr) ensure Cproton.pn_free(pstr) end end
to_s()
click to toggle source
# File lib/util/wrapper.rb, line 137 def to_s() inspect; end