Struct multiqueue::FuturesSender [] [src]

pub struct FuturesSender<T: Clone> { /* fields omitted */ }

This is a sender that can transparently act as a futures stream

Methods

impl<T: Clone> FuturesSender<T>
[src]

Identical to Sender::try_send()

Identical to Sender::unsubscribe()

Trait Implementations

impl<T: Clone + Clone> Clone for FuturesSender<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Clone> Sink for FuturesSender<T>
[src]

The type of value that the sink accepts.

The type of value produced by the sink when an error occurs.

Essentially try_send except parks if the queue is full

Make progress on all pending requests, and determine whether they have completed. Read more

Composes a function in front of the sink. Read more

Adds a fixed-size buffer to the current sink. Read more

A future that completes when the sink has finished processing all pending requests. Read more

A future that completes after the given item has been fully processed into the sink, including flushing. Read more

A future that completes after the given stream has been fully processed into the sink, including flushing. Read more