Home
last modified time | relevance | path

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

/external/python/cpython3/Doc/library/
Dlogging.handlers.rst976 QueueHandler chapter
981 The :class:`QueueHandler` class, located in the :mod:`logging.handlers` module,
985 Along with the :class:`QueueListener` class, :class:`QueueHandler` can be used
992 .. class:: QueueHandler(queue)
994 Returns a new instance of the :class:`QueueHandler` class. The instance is
1045 because it works hand-in-hand with :class:`QueueHandler`.
1047 Along with the :class:`QueueHandler` class, :class:`QueueListener` can be used
/external/python/cpython3/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)
734 Alternatively, you can use a ``Queue`` and a :class:`QueueHandler` to send
807 h = logging.handlers.QueueHandler(queue) # Just the one handler needed
871 qh = logging.handlers.QueueHandler(q)
1293 Subclassing QueueHandler - a ZeroMQ example
1296 You can use a :class:`QueueHandler` subclass to send messages to other kinds
1307 class ZeroMQSocketHandler(QueueHandler):
1318 class ZeroMQSocketHandler(QueueHandler):
[all …]
Dlogging.rst966 #. :class:`~handlers.QueueHandler` instances send messages to a queue, such as
979 The :class:`~handlers.QueueHandler` class.
/external/python/cpython3/Lib/test/
Dtest_concurrent_futures.py14 from logging.handlers import QueueHandler
78 logger.addHandler(QueueHandler(log_queue))
Dtest_logging.py3514 self.que_hdlr = logging.handlers.QueueHandler(self.queue)
3633 handler = logging.handlers.QueueHandler(log_queue)
/external/python/cpython3/Lib/logging/
Dhandlers.py1367 class QueueHandler(logging.Handler): class
/external/python/cpython3/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
/external/python/cpython3/Misc/
DHISTORY12110 - Logging: Added QueueHandler class to facilitate logging usage with