In Files

  • xmlrpc/utils.rb

Parent

Methods

XMLRPC::Service::BasicInterface

base class for Service Interface definitions, used by XMLRPC::BasicServer#add_handler

Attributes

methods[R]
prefix[R]

Public Class Methods

new(prefix) click to toggle source
 
               # File xmlrpc/utils.rb, line 66
def initialize(prefix)
  @prefix = prefix
  @methods = []
end
            

Public Instance Methods

add_method(sig, help=nil, meth_name=nil) click to toggle source
 
               # File xmlrpc/utils.rb, line 71
def add_method(sig, help=nil, meth_name=nil)
  mname = nil
  sig = [sig] if sig.kind_of? String

  sig = sig.collect do |s| 
    name, si = parse_sig(s)
    raise "Wrong signatures!" if mname != nil and name != mname 
    mname = name
    si
  end

  @methods << [mname, meth_name || mname, sig, help]
end
            

Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.

If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.

If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.

If you want to help improve the Ruby documentation, please visit Documenting-ruby.org.

blog comments powered by Disqus