Home
last modified time | relevance | path

Searched refs:QueueHandler (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Doc/library/
Dlogging.handlers.rst996 QueueHandler chapter
1001 The :class:`QueueHandler` class, located in the :mod:`logging.handlers` module,
1005 Along with the :class:`QueueListener` class, :class:`QueueHandler` can be used
1012 .. class:: QueueHandler(queue)
1014 Returns a new instance of the :class:`QueueHandler` class. The instance is
1065 because it works hand-in-hand with :class:`QueueHandler`.
1067 Along with the :class:`QueueHandler` class, :class:`QueueListener` can be used
/third_party/python/Doc/howto/
Dlogging-cookbook.rst347 :class:`QueueHandler` to those loggers which are accessed from
358 designed as the counterpart to :class:`QueueHandler`. A
373 queue_handler = QueueHandler(que)
745 Alternatively, you can use a ``Queue`` and a :class:`QueueHandler` to send
818 h = logging.handlers.QueueHandler(queue) # Just the one handler needed
882 qh = logging.handlers.QueueHandler(q)
1315 Subclassing QueueHandler - a ZeroMQ example
1318 You can use a :class:`QueueHandler` subclass to send messages to other kinds
1329 class ZeroMQSocketHandler(QueueHandler):
1340 class ZeroMQSocketHandler(QueueHandler):
[all …]
Dlogging.rst965 #. :class:`~handlers.QueueHandler` instances send messages to a queue, such as
978 The :class:`~handlers.QueueHandler` class.
/third_party/python/Lib/test/
Dtest_concurrent_futures.py14 from logging.handlers import QueueHandler
78 logger.addHandler(QueueHandler(log_queue))
Dtest_logging.py3527 self.que_hdlr = logging.handlers.QueueHandler(self.queue)
3646 handler = logging.handlers.QueueHandler(log_queue)
/third_party/python/Lib/logging/
Dhandlers.py1397 class QueueHandler(logging.Handler): class
/third_party/python/Misc/NEWS.d/
D3.8.0a1.rst1888 QueueHandler.prepare() now makes a copy of the record before modifying and
3022 In :class:`QueueHandler`, clear `exc_text` from :class:`LogRecord` to
/third_party/python/Misc/
DHISTORY12110 - Logging: Added QueueHandler class to facilitate logging usage with