Module executors

Module executors 

Source

Functionsยง

event_loop_future
Execute a future on the main event loop by polling. The future does not need to be Send.
event_loop_future_option
Execute a future on the main event loop by polling, for Option signals. The future does not need to be Send.
event_loop_receiver
Execute a pollable receiver on the main event loop. The receiver does not need to be Send.
event_loop_receiver_option
Execute a pollable receiver on the main event loop, for Option signals. The receiver does not need to be Send.
event_loop_stream
Execute a stream on the main event loop by polling. The stream does not need to be Send.
event_loop_stream_option
Execute a stream on the main event loop by polling, for Option signals. The stream does not need to be Send.
std_thread_channel
Execute a blocking channel receiver on a dedicated std::thread.
std_thread_channel_option
Execute a blocking channel receiver on a dedicated std::thread, for Option signals.
std_thread_receiver
Execute a blocking channel receiver on a dedicated std::thread.
std_thread_receiver_option
Execute a blocking channel receiver on a dedicated std::thread, for Option signals.