基于python的事件处理模型

1.事件、事件源,事件注册机与分发器 # -*- coding: utf-8 -*- from enum import Enum from collections import defaultdict class Event(object): def __init__(self, event_type, **kwargs): self.__dict__ = kwargs
相关文章
相关标签/搜索