AbstractEventLoop.call_at(when, callback, *args)
Arrange for the callback to be called at the given absolute timestamp when (an int or float), using the same time reference as AbstractEventLoop.time()
.
This method’s behavior is the same as call_later()
.
An instance of asyncio.Handle
is returned, which can be used to cancel the callback.
Use functools.partial to pass keywords to the callback.
Please login to continue.