Class QMgrProxy
In: queuemgr/queuemgrproxy.rb
Parent: Object
Methods
exit    listall    new    register    unregister    value   
Public Class methods
new(host, port)
# File queuemgr/queuemgrproxy.rb, line 47
  def initialize(host, port)
    @xc = XMLRPC::Client.new(host, "/RPC2", port).proxy("named")
  end
Public Instance methods
value(uri)
# File queuemgr/queuemgrproxy.rb, line 50
  def value(uri)
    trycall { @xc.value(uri) }
  end
register(uri, val)
# File queuemgr/queuemgrproxy.rb, line 53
  def register(uri, val)
    trycall { @xc.register(uri, val.join("|")) }
  end
unregister(uri)
# File queuemgr/queuemgrproxy.rb, line 56
  def unregister(uri)
    trycall { @xc.unregister(uri) }
  end
listall(protocol)
# File queuemgr/queuemgrproxy.rb, line 59
  def listall(protocol)
    trycall { @xc.listall(protocol) }
  end
exit()
# File queuemgr/queuemgrproxy.rb, line 62
  def exit()
    trycall { @xc.exit() }
  end