Eidolon
|
Inherits object.
Public Member Functions | |
def | __init__ (self, name, send, recv) |
def | __call__ (self, args, kwargs) |
Public Attributes | |
name | |
send | |
recv | |
A proxy type for a method of an object hosted remotely. When called, a message containing the name of the method and the given arguments is sent down the send Connection object, and the result is collected from the recv object. This assumes that all arguments and return values are picklable and that a server object is present at the receiver's end to receive the method message and execute response behaviour.
def __init__ | ( | self, | |
name, | |||
send, | |||
recv | |||
) |
def __call__ | ( | self, | |
args, | |||
kwargs | |||
) |
name |
recv |
send |