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

Methods
G
M
N
Class Public methods
new(prefix, &p)
# File ../ruby/lib/xmlrpc/utils.rb, line 106
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 ../ruby/lib/xmlrpc/utils.rb, line 112
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
Instance Private methods
meth(*a)
# File ../ruby/lib/xmlrpc/utils.rb, line 121
def meth(*a)
  add_method(*a)
end