Home | History | Annotate | Download | only in python2.7

Lines Matching refs:MultiCall

50 # 2003-10-31 mvl Add multicall support
110 MultiCall Executor of boxcared xmlrpc requests
932 ## Multicall support
936 # some lesser magic to store calls made to a MultiCall object
947 """Iterates over the results of a multicall. Exceptions are
961 "unexpected type in multicall result"
963 class MultiCall:
968 Methods can be added to the MultiCall using normal
971 multicall = MultiCall(server_proxy)
972 multicall.add(2,3)
973 multicall.get_address("Guido")
975 To execute the multicall, call the MultiCall object e.g.:
977 add_result, address = multicall()
985 return "<MultiCall at %x>" % id(self)
997 return MultiCallIterator(self.__server.system.multicall(marshalled_list))
1632 multi = MultiCall(server)