The whole worker object will run remotely (means in separated
process).
|
|
__init__(self,
muscle,
profiler_data=None)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
|
|
|
|
|
|
|
register(self,
address,
authkey,
*args,
**kw)
Connect to remote listener and run event lop. |
source code
|
|
|
|
run(self,
address,
authkey,
*args,
**kw)
Listen to given address and run event loop. |
source code
|
|
|
|
|
|
|
remote_setattr(self,
name,
var)
Remotely set attribute of worker. |
source code
|
|
|
|
remote_loadobj(self,
name,
objfn)
Remotely unpickle a file and set it to self with the specified name. |
source code
|
|
|
|
barrier(self)
Send barrier signal for synchronization. |
source code
|
|
|
|
|
|
|
connect_peer(self,
peern,
address,
authkey)
Make a connection to specified peer (it has to be accepting
connection). |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
create_solver(self,
bcmap,
dirname,
blkfn,
iblk,
nblk,
solvertype,
svrkw)
Load a block and create a solver object with the given information,
and set it to muscle. |
source code
|
|
|
|
|
|
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
|