mirror of
https://github.com/TriM-Organization/LiteyukiBot-TriM.git
synced 2024-11-11 09:37:29 +08:00
38 lines
823 B
Python
38 lines
823 B
Python
import threading
|
||
from multiprocessing import get_context, Event
|
||
|
||
import nonebot
|
||
from nonebot import logger
|
||
|
||
from liteyuki.plugin.load import load_plugins
|
||
|
||
timeout_limit: int = 20
|
||
__all__ = [
|
||
"ProcessingManager",
|
||
"nb_run",
|
||
]
|
||
|
||
|
||
class ProcessingManager:
|
||
event: Event = None
|
||
|
||
@classmethod
|
||
def restart(cls, delay: int = 0):
|
||
"""
|
||
发送终止信号
|
||
Args:
|
||
delay: 延迟时间,默认为0,单位秒
|
||
Returns:
|
||
"""
|
||
if cls.event is None:
|
||
raise RuntimeError("ProcessingManager 未初始化。")
|
||
if delay > 0:
|
||
threading.Timer(delay, function=cls.event.set).start()
|
||
return
|
||
cls.event.set()
|
||
|
||
|
||
def nb_run(event, *args, **kwargs):
|
||
ProcessingManager.event = event
|
||
nonebot.run(*args, **kwargs)
|