Module xmlrpclib :: Class MultiCall
[hide private]
[frames] | no frames]

_ClassType MultiCall

server -> a object used to boxcar method calls

server should be a ServerProxy object.

Methods can be added to the MultiCall using normal method call syntax e.g.:

multicall = MultiCall(server_proxy) multicall.add(2,3) multicall.get_address("Guido")

To execute the multicall, call the MultiCall object e.g.:

add_result, address = multicall()

Instance Methods [hide private]
 
__init__(self, server)
 
__repr__(self)
 
__str__(self)
 
__getattr__(self, name)
 
__call__(self)