Struct actix::fut::StreamTimeout [−][src]
#[must_use = "streams do nothing unless polled"]pub struct StreamTimeout<S> where
S: ActorStream, { /* fields omitted */ }
Future for the timeout combinator, interrupts computations if it takes
more than timeout.
This is created by the ActorFuture::timeout() method.
Trait Implementations
impl<S: Debug> Debug for StreamTimeout<S> where
S: ActorStream,
S::Error: Debug, [src]
impl<S: Debug> Debug for StreamTimeout<S> where
S: ActorStream,
S::Error: Debug, fn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<S> ActorStream for StreamTimeout<S> where
S: ActorStream,
S::Error: Clone, [src]
impl<S> ActorStream for StreamTimeout<S> where
S: ActorStream,
S::Error: Clone, type Item = S::Item
The type of item this stream will yield on success.
type Error = S::Error
The type of error this stream may generate.
type Actor = S::Actor
The actor within which this stream runs.
fn poll(
&mut self,
act: &mut S::Actor,
ctx: &mut <S::Actor as Actor>::Context
) -> Poll<Option<S::Item>, S::Error>[src]
fn poll(
&mut self,
act: &mut S::Actor,
ctx: &mut <S::Actor as Actor>::Context
) -> Poll<Option<S::Item>, S::Error>fn map<U, F>(self, f: F) -> StreamMap<Self, F> where
F: FnMut(Self::Item, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> U,
Self: Sized, [src]
fn map<U, F>(self, f: F) -> StreamMap<Self, F> where
F: FnMut(Self::Item, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> U,
Self: Sized, Converts a stream of type T to a stream of type U.
fn map_err<E, F>(self, f: F) -> StreamMapErr<Self, F> where
F: FnMut(Self::Error, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> E,
Self: Sized, [src]
fn map_err<E, F>(self, f: F) -> StreamMapErr<Self, F> where
F: FnMut(Self::Error, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> E,
Self: Sized, Converts a stream of error type T to a stream of error type E.
fn then<F, U>(self, f: F) -> StreamThen<Self, F, U> where
F: FnMut(Result<Self::Item, Self::Error>, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> U,
U: IntoActorFuture<Actor = Self::Actor>,
Self: Sized, [src]
fn then<F, U>(self, f: F) -> StreamThen<Self, F, U> where
F: FnMut(Result<Self::Item, Self::Error>, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> U,
U: IntoActorFuture<Actor = Self::Actor>,
Self: Sized, Chain on a computation for when a value is ready, passing the resulting item to the provided closure f. Read more
fn and_then<F, U>(self, f: F) -> StreamAndThen<Self, F, U> where
F: FnMut(Self::Item, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> U,
U: IntoActorFuture<Error = Self::Error, Actor = Self::Actor>,
Self: Sized, [src]
fn and_then<F, U>(self, f: F) -> StreamAndThen<Self, F, U> where
F: FnMut(Self::Item, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> U,
U: IntoActorFuture<Error = Self::Error, Actor = Self::Actor>,
Self: Sized, Chain on a computation for when a value is ready, passing the successful results to the provided closure f. Read more
fn fold<F, T, Fut>(self, init: T, f: F) -> StreamFold<Self, F, Fut, T> where
F: FnMut(T, Self::Item, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> Fut,
Fut: IntoActorFuture<Actor = Self::Actor, Item = T>,
Self::Error: From<Fut::Error>,
Self: Sized, [src]
fn fold<F, T, Fut>(self, init: T, f: F) -> StreamFold<Self, F, Fut, T> where
F: FnMut(T, Self::Item, &mut Self::Actor, &mut <Self::Actor as Actor>::Context) -> Fut,
Fut: IntoActorFuture<Actor = Self::Actor, Item = T>,
Self::Error: From<Fut::Error>,
Self: Sized, Execute an accumulating computation over a stream, collecting all the values into one final result. Read more
fn timeout(self, timeout: Duration, err: Self::Error) -> StreamTimeout<Self> where
Self: Sized,
Self::Error: Clone, [src]
fn timeout(self, timeout: Duration, err: Self::Error) -> StreamTimeout<Self> where
Self: Sized,
Self::Error: Clone, Add timeout to stream. Read more
fn finish(self) -> StreamFinish<Self> where
Self: Sized, [src]
fn finish(self) -> StreamFinish<Self> where
Self: Sized, Converts a stream to a future that resolves when stream finishes.
Auto Trait Implementations
impl<S> Send for StreamTimeout<S> where
S: Send,
<S as ActorStream>::Error: Send,
impl<S> Send for StreamTimeout<S> where
S: Send,
<S as ActorStream>::Error: Send, impl<S> Sync for StreamTimeout<S> where
S: Sync,
<S as ActorStream>::Error: Sync,
impl<S> Sync for StreamTimeout<S> where
S: Sync,
<S as ActorStream>::Error: Sync,