Skip to content

网易原生定时器

在任意系统下调用 Timer 装饰器,它们会在系统注册时开始执行

python
from ..framework.core.app.mixin.common.timer import Timer

class AServer(ServerBase):
    ...
    @Timer.RepeatedTimer(1)
    def Test(self):
        print('Test', self) # 将循环打印

    @Timer.Timer(3)
    def HelloDelay(self):
        print('你好') # 将在本系统创建3秒后打印