Home | History | Annotate | Download | only in multiprocessing

Lines Matching full:manager

94 # Function for communication with a manager's server process
99 Send a message to manager using connection `c` and return response
145 # Server which is run in a process controlled by a manager
150 Server class which runs in a process controlled by a manager object
347 util.debug('manager received shutdown message')
358 util.debug('terminating a child process of manager')
362 util.debug('terminating a child process of manager')
366 util.info('manager exiting with exitcode 0')
444 # Class to represent state of a manager
497 Connect manager object to the server process
506 Spawn a server process for this manager object
556 # run the manager
557 util.info('manager serving at %r', server.address)
574 Join the manager process (if it has been spawned)
607 Shutdown the manager process; will be registered as a finalizer
610 util.info('sending shutdown message to manager')
622 util.info('manager still alive')
624 util.info('trying to `terminate()` manager process')
628 util.info('manager still alive after terminate')
642 Register a typeid with the manager type
669 token, self._serializer, manager=self,
699 def __init__(self, token, serializer, manager=None,
711 # thread to communicate with the manager at token.address
716 # which are in the manager at token.address
721 self._manager = manager
738 util.debug('making connection to manager')
767 token, self._serializer, manager=self._manager,
801 # check whether manager is still alive
803 # tell manager this process no longer cares about referent
812 util.debug('DECREF %r -- manager already shutdown', token.id)
815 # the process owns no more references to objects for this manager
827 # the proxy may just be for a manager which has shutdown
906 def AutoProxy(token, serializer, manager=None, authkey=None,
920 if authkey is None and manager is not None:
921 authkey = manager._authkey
926 proxy = ProxyType(token, serializer, manager=manager, authkey=authkey,
1094 The `multiprocessing.Manager()` function creates started instances of