class AbstractListener(threading.Thread): """A class implementing the basic behaviour for event listeners. Instances of this class can be used as context managers. This is equivalent to the following code:: listener.start() listener.wait() try: with_statements() finally: listener.stop() Actual implementations of this class must set the attribute ``_log``, which must be an instance of :class:`logging.Logger`. :param bool suppress: Whether to suppress events. Setting this to ``True`` will prevent the input events from being passed to the rest of the system. :param kwargs: A mapping from callback attribute to callback handler. All handlers will be wrapped in a function reading the return value of the callback, and if it ``is False``, raising :class:`StopException`. Any callback that is falsy will be ignored. """解释一下
时间: 2024-02-14 10:12:02 浏览: 111
关于Thread讲解
这是一个抽象类 `AbstractListener`,继承自 `threading.Thread`。它实现了事件监听器的基本行为,可以用作上下文管理器。
使用该类的实例作为上下文管理器,等价于以下代码:
```
listener.start()
listener.wait()
try:
with_statements()
finally:
listener.stop()
```
该类的实际实现需要设置一个名为 `_log` 的属性,该属性必须是 `logging.Logger` 类的实例。
该类的构造函数有一个布尔型参数 `suppress`,用于控制是否禁止事件传递给系统的其他部分。如果将其设置为 `True`,则事件将被禁止传递。
另外,构造函数还可以接收一个关键字参数 `kwargs`,该参数是一个从回调属性到回调处理程序的映射。所有的处理程序都将被封装在一个函数中,该函数会读取回调的返回值,如果返回值为 `False`,则引发 `StopException`。任何回调都不为真时将被忽略。
阅读全文