Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(3) | Call(3) | Derive(0) | Import(0)
@summary: Raised when too many simultaneous clients attempt connection to the PyRQ instance.
src/p/y/PyRQ-0.4.1/PyRQ/Core/QueueServer/QueueServer.py PyRQ(Download)
msg = "Too many existing clients, rejecting new client connection.\r\n" sys.stderr.write(msg) raise Errors.TooManyClientsError(msg) self._clients[uuid] = weakref.proxy(client) if ("setClientData" in kwargs):
src/p/y/PyRQ-0.4.1/PyRQ/RRQ/RRQ.py PyRQ(Download)
marshaller = self.getMarshaller() if self.abort: response = Errors.TooManyClientsError() self._doResponse(self.request, marshaller.package(response)) return
src/p/y/PyRQ-0.4.1/Mock/mock.py PyRQ(Download)
marshaller = self.getMarshaller() if self.abort: response = Errors.TooManyClientsError() self._doResponse(self.request, marshaller.package(response)) return