Lines Matching refs:call_soon
72 methods such as :meth:`loop.call_soon` and :meth:`loop.call_later`;
174 .. method:: loop.call_soon(callback, *args, context=None)
193 A thread-safe variant of :meth:`call_soon`. Must be used to
211 loop.call_soon(
1262 A callback wrapper object returned by :meth:`loop.call_soon`,
1466 and :meth:`loop.call_soon`. Modern asyncio applications rarely
1473 Hello World with call_soon()
1476 An example using the :meth:`loop.call_soon` method to schedule a
1490 loop.call_soon(hello_world, loop)
1527 loop.call_soon(display_date, end_time, loop)
1571 loop.call_soon(wsock.send, 'abc'.encode())