Searched refs:call_later (Results 1 – 16 of 16) sorted by relevance
423 timeout_handle = loop.call_later(timeout, _release_waiter, waiter)472 timeout_handle = loop.call_later(timeout, _release_waiter, waiter)576 timeout_handle = loop.call_later(timeout, _on_timeout)601 h = loop.call_later(delay,
262 return self.call_later(0, callback, *args, context=context)264 def call_later(self, delay, callback, *args, context=None): member in AbstractEventLoop
611 self._loop.call_later(self._ssl_handshake_timeout,
185 self.call_later(constants.ACCEPT_RETRY_DELAY,
697 def call_later(self, delay, callback, *args, context=None): member in BaseEventLoop
254 h = self.loop.call_later(10.0, cb)266 self.loop.call_later(-1, cb, 'a')267 self.loop.call_later(-2, cb, 'b')301 loop.call_later(60, cb)306 loop.call_later(60, cb)412 self.loop.call_later(3000, cb)419 h = self.loop.call_later(3600, cb)425 h = self.loop.call_later(100, cb)455 self.loop.call_later(3600, cb)460 h = self.loop.call_later(3600, cb)[all …]
188 loop.call_later(0.01, q.put_nowait, 1)333 loop.call_later(0.01, q.get_nowait)
316 self.loop.call_later(0.1, callback, 'hello world')502 self.loop.call_later(60, self.loop.stop)522 self.loop.call_later(60, self.loop.stop)1729 self.loop.call_later(1.0, func)2269 h = loop.call_later(0, noop)2273 h = loop.call_later(0, noop)2468 NotImplementedError, loop.call_later, None, None)
1146 loop.call_later(0.1, fut.set_result, "ok")1803 orig_call_later = loop.call_later1805 def call_later(delay, callback, *args): function1810 loop.call_later = call_later1835 loop.call_later(0.1, sleeper.cancel)3069 self.loop.call_later(0.1, fut.set_result, 1)
28 timer._timer_future = timer._loop.call_later(timeout, timer.on_time_up)
92 * - :meth:`loop.call_later`264 * :ref:`Using loop.call_later() <asyncio_example_call_later>`.
83 methods such as :meth:`loop.call_soon` and :meth:`loop.call_later`;256 .. method:: loop.call_later(delay, callback, *args, context=None)291 This method's behavior is the same as :meth:`call_later`.1389 A callback wrapper object returned by :meth:`loop.call_later`,1607 Display the current date with call_later()1611 callback uses the :meth:`loop.call_later` method to reschedule itself1620 loop.call_later(1, display_date, end_time, loop)
1231 self.loop.call_later(delay / 2, lambda: fut.cancel())1321 self.loop.call_later(delay / 2, lambda: fut.cancel())
648 :meth:`loop.call_later() <asyncio.loop.call_later>`,726 :func:`loop.call_later() <asyncio.loop.call_later>`
964 performance in the ``call_later()`` unit test. The test failed randomly on
764 self.settings_timer = loop.call_later(self.SETTINGS_TIMEOUT,