Flowdock
class
Importance_2
Ruby latest stable (v2_5_5) - 0 notes - Superclass: Object

Class deprecated or moved

This class is deprecated or moved on the latest stable version. The last existing version (v2_2_9) is shown here.

This is the base class for all XML-RPC server-types (CGI, standalone). You can add handler and set a default handler. Do not use this server, as this is/should be an abstract class.

How the method to call is found

The arity (number of accepted arguments) of a handler (method or Proc object) is compared to the given arguments submitted by the client for a RPC, or Remote Procedure Call.

A handler is only called if it accepts the number of arguments, otherwise the search for another handler will go on. When at the end no handler was found, the default_handler, XMLRPC::BasicServer#set_default_handler will be called.

With this technique it is possible to do overloading by number of parameters, but only for Proc handler, because you cannot define two methods of the same name in the same class.

Constants

ERR_MC_EXPECTED_STRUCT = 8

ERR_MC_WRONG_PARAM_PARAMS = 7

ERR_MC_RECURSIVE_CALL = 6

ERR_MC_MISSING_METHNAME = 5

ERR_MC_MISSING_PARAMS = 4

ERR_MC_WRONG_PARAM = 3

ERR_UNCAUGHT_EXCEPTION = 2

ERR_METHOD_MISSING = 1

Attributes

Show files where this class is defined (1 file)
Register or log in to add new notes.