|
start_waiting(self,
channel)
Start a waiting process given the reception of data on the given
'channel'. |
source code
|
|
|
start(self,
address,
callable,
*args,
**kw)
Create a new process, located at the given 'address', for the given
'callable' using any additional arguments provided. |
source code
|
|
|
create(self,
address)
Create a new process, located at the given 'address', and return the
created communications channel to the created process. |
source code
|
|
|
manage(self,
address,
callable)
Using the given 'address', publish the given 'callable' in an object
which can then be called in the same way as 'callable', but with new
processes and communications managed automatically. |
source code
|
|
|
connect(self,
address)
Connect to a process which is contactable via the given 'address'. |
source code
|
|