xtao_math_bot/Timer/__init__.py

21 lines
607 B
Python
Raw Normal View History

2020-03-05 06:54:56 +00:00
import asyncio
import logging
class Timer:
def __init__(self, callback, timeout):
logging.info("Created a schedule interval as " + str(timeout) + " seconds.")
loop = asyncio.get_event_loop()
self.callback = callback
self.timeout = timeout
self.task = loop.create_task(self.wait())
async def wait(self):
await asyncio.sleep(self.timeout)
logging.info("Successfully executed a timer schedule.")
await self.callback
def stop(self):
try:
self.task.cancel()
except asyncio.CancelledError:
pass