I am the main object in the worker process, managing jobs and
everything related. I live in the main worker process.
|
|
|
|
|
|
|
|
listen(self)
Start listening on FeedServer (incoming eater requests) and JobServer
(through which we communicate with our children) ports |
source code
|
|
|
|
|
|
|
|
|
|
| callRemote(self,
methodName,
*args,
**kwargs) |
source code
|
|
|
|
|
|
|
feedToFD(self,
componentId,
feedName,
fd,
eaterId)
Called from the FeedAvatar to pass a file descriptor on to the job
running the component for this feeder. |
source code
|
|
|
|
eatFromFD(self,
componentId,
eaterAlias,
fd,
feedId)
Called from the FeedAvatar to pass a file descriptor on to the job
running the given component. |
source code
|
|
|
|
|
|
|
|
|
|
| create(self,
avatarId,
type,
moduleName,
methodName,
nice,
conf) |
source code
|
|
|
|
| runCheck(self,
module,
function,
*args,
**kwargs) |
source code
|
|
|
|
|
|
|
|
|
Inherited from extern.log.log.Loggable:
__providedBy__,
debug,
doLog,
error,
info,
log,
logFunction,
logObjectName,
warning,
warningFailure,
writeMarker
|