Lines Matching defs:Server
136 # Server which is run in a process controlled by a manager
139 class Server(object):
141 Server class which runs in a process controlled by a manager object
233 # Server.serve_client() calls sys.exit(0) on EOF
437 util.debug('Server re-enabled tracking & INCREF %r', ident)
444 util.debug('Server DECREF skipping %r', ident)
497 _Server = Server
524 return Server(self._registry, self._address,
1274 class SharedMemoryServer(Server):
1276 public = Server.public + \
1280 Server.__init__(self, *args, **kwargs)
1297 return Server.create(self, c, typeid, *args, **kwargs)
1300 "Call unlink() on all tracked shared memory, terminate the Server."
1302 return Server.shutdown(self, c)
1305 "Adds the supplied shared memory block name to Server's tracker."
1310 and removes it from the tracker instance inside the Server."""
1314 """Returns a list of names of shared memory blocks that the Server
1320 """Like SyncManager but uses SharedMemoryServer instead of Server.
1347 'Better than monkeypatching for now; merge into Server ultimately'