Lines Matching refs:uv_async_send
30 with the event loop (except using ``uv_async_send``).
316 may be invoked immediately after ``uv_async_send`` is called in another
318 multiple calls to ``uv_async_send`` and invoke your callback only once. The
320 least once* after the call to ``uv_async_send``. If you have no pending
321 calls to ``uv_async_send``, the callback won't be called. If you make two
324 ``uv_async_send``. Your callback will never be called twice for just one
335 for delivery with ``uv_async_send``. Remember: ``uv_async_send`` is also
357 ``uv_async_send()`` is actually only meant to wake up the event loop. Use
363 ``uv_async_send`` does.
365 One use case where ``uv_async_send`` is required is when interoperating with
389 it uses ``uv_async_send``.