Home
last modified time | relevance | path

Searched refs:call_at (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Lib/asyncio/
Dtest_utils.py404 def call_at(self, when, callback, *args): member in TestLoop
406 return super().call_at(when, callback, *args)
Devents.py269 def call_at(self, when, callback, *args): member in AbstractEventLoop
Dbase_events.py542 timer = self.call_at(self.time() + delay, callback, *args)
547 def call_at(self, when, callback, *args): member in BaseEventLoop
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_base_events.py280 self.loop.call_at(when, cb)
304 loop.call_at(loop.time() + 60, cb)
308 loop.call_at(loop.time() + 60, cb)
1707 self.loop.call_at(self.loop.time() + 60, func)
Dtest_events.py1841 self.loop.call_at(self.loop.time() + .0, func)
2575 NotImplementedError, loop.call_at, f, f)
/external/python/cpython3/Doc/library/
Dasyncio-dev.rst36 * :meth:`~AbstractEventLoop.call_soon` and :meth:`~AbstractEventLoop.call_at` methods
Dasyncio-eventloop.rst186 .. method:: AbstractEventLoop.call_at(when, callback, *args)
845 and :func:`AbstractEventLoop.call_at`.