Function bounded_tx_async_rx_blocking

Source
pub fn bounded_tx_async_rx_blocking<T: Unpin>(
    size: usize,
) -> (MAsyncTx<T>, MRx<T>)
Expand description

Initiate a bounded channel that sender is async, receiver is blocking.

Special case: 0 size is not supported yet, threat it as 1 size for now.