Class which wraps a XMLRPC::Service::Interface definition, used by XMLRPC::BasicServer#add_handler

Methods
G
N
Class Public methods
new(prefix, &p)
# File lib/xmlrpc/utils.rb, line 112
def initialize(prefix, &p)
  raise "No interface specified" if p.nil?
  super(prefix)
  instance_eval(&p)
end
Instance Public methods
get_methods(obj, delim=".")
# File lib/xmlrpc/utils.rb, line 118
def get_methods(obj, delim=".")
  prefix = @prefix + delim
  @methods.collect { |name, meth, sig, help|
    [prefix + name.to_s, obj.method(meth).to_proc, sig, help]
  }
end