|
__init__(self,
pid,
read_pipe,
write_pipe)
Initialise the channel with a process identifier 'pid', a 'read_pipe'
from which messages will be received, and a 'write_pipe' into which
messages will be sent. |
source code
|
|
|
|
|
|
|
wait(self,
options=0)
Wait for the created process, if any, to exit. |
source code
|
|
|
_send(self,
obj)
Send the given object 'obj' through the channel. |
source code
|
|
|
send(self,
obj)
Send the given object 'obj' through the channel. |
source code
|
|
|
_receive(self)
Receive an object through the channel, returning the object. |
source code
|
|
|
|