Lines Matching refs:QueueHandler
564 :class:`QueueHandler` to those loggers which are accessed from
575 designed as the counterpart to :class:`QueueHandler`. A
590 queue_handler = QueueHandler(que)
1275 Alternatively, you can use a ``Queue`` and a :class:`QueueHandler` to send
1348 h = logging.handlers.QueueHandler(queue) # Just the one handler needed
1412 qh = logging.handlers.QueueHandler(q)
1846 Subclassing QueueHandler and QueueListener- a ZeroMQ example
1849 Subclass ``QueueHandler``
1852 You can use a :class:`QueueHandler` subclass to send messages to other kinds
1863 class ZeroMQSocketHandler(QueueHandler):
1874 class ZeroMQSocketHandler(QueueHandler):
1908 Subclassing QueueHandler and QueueListener- a ``pynng`` example
1982 Subclass ``QueueHandler``
2000 class NNGSocketHandler(logging.handlers.QueueHandler):
2213 see logging in the main process, how the workers log to a QueueHandler and how
2325 # The worker process configuration is just a QueueHandler attached to the
2335 'class': 'logging.handlers.QueueHandler',