class XMLRPC::Service::Interface
Class which wraps a XMLRPC::Service::Interface
definition, used by XMLRPC::BasicServer#add_handler
Public Class Methods
Source
# File lib/xmlrpc/utils.rb, line 113 def initialize(prefix, &p) raise "No interface specified" if p.nil? super(prefix) instance_eval(&p) end
Calls superclass method
XMLRPC::Service::BasicInterface::new
Public Instance Methods
Source
# File lib/xmlrpc/utils.rb, line 119 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