pub struct Spawn<T> where
T: ?Sized, { /* private fields */ }Expand description
Representation of a spawned future/stream.
This object is returned by the spawn function in this module. This
represents a “fused task and future”, storing all necessary pieces of a task
and owning the top-level future that’s being driven as well.
A Spawn can be poll’d for completion or execution of the current thread
can be blocked indefinitely until a notification arrives. This can be used
with either futures or streams, with different methods being available on
Spawn depending which is used.
Implementations
sourceimpl<F> Spawn<F> where
F: Future,
impl<F> Spawn<F> where
F: Future,
sourcepub fn wait_future(
&mut self
) -> Result<<F as Future>::Item, <F as Future>::Error>
pub fn wait_future(
&mut self
) -> Result<<F as Future>::Item, <F as Future>::Error>
Waits for the internal future to complete, blocking this thread’s execution until it does.
This function will call poll_future in a loop, waiting for the future
to complete. When a future cannot make progress it will use
thread::park to block the current thread.
sourceimpl<S> Spawn<S> where
S: Sink,
impl<S> Spawn<S> where
S: Sink,
sourcepub fn wait_send(
&mut self,
value: <S as Sink>::SinkItem
) -> Result<(), <S as Sink>::SinkError>
pub fn wait_send(
&mut self,
value: <S as Sink>::SinkItem
) -> Result<(), <S as Sink>::SinkError>
Blocks the current thread until it’s able to send value on this sink.
This function will send the value on the sink that this task wraps. If
the sink is not ready to send the value yet then the current thread will
be blocked until it’s able to send the value.
sourcepub fn wait_flush(&mut self) -> Result<(), <S as Sink>::SinkError>
pub fn wait_flush(&mut self) -> Result<(), <S as Sink>::SinkError>
Blocks the current thread until it’s able to flush this sink.
This function will call the underlying sink’s poll_complete method
until it returns that it’s ready, proxying out errors upwards to the
caller if one occurs.
The thread will be blocked until poll_complete returns that it’s
ready.
sourceimpl<T> Spawn<T> where
T: ?Sized,
impl<T> Spawn<T> where
T: ?Sized,
sourcepub fn get_mut(&mut self) -> &mut T
pub fn get_mut(&mut self) -> &mut T
Get a mutable reference to the object the Spawn is wrapping.
sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Consume the Spawn, returning its inner object
sourcepub fn poll_fn_notify<N, F, R>(&mut self, notify: &N, id: usize, f: F) -> R where
F: FnOnce(&mut T) -> R,
N: Clone + Into<NotifyHandle>,
pub fn poll_fn_notify<N, F, R>(&mut self, notify: &N, id: usize, f: F) -> R where
F: FnOnce(&mut T) -> R,
N: Clone + Into<NotifyHandle>,
Calls the provided closure, scheduling notifications to be sent to the
notify argument.
sourcepub fn poll_future_notify<N>(
&mut self,
notify: &N,
id: usize
) -> Result<Async<<T as Future>::Item>, <T as Future>::Error> where
N: Clone + Into<NotifyHandle>,
T: Future,
pub fn poll_future_notify<N>(
&mut self,
notify: &N,
id: usize
) -> Result<Async<<T as Future>::Item>, <T as Future>::Error> where
N: Clone + Into<NotifyHandle>,
T: Future,
Polls the internal future, scheduling notifications to be sent to the
notify argument.
This method will poll the internal future, testing if it’s completed
yet. The notify argument is used as a sink for notifications sent to
this future. That is, while the future is being polled, any call to
task::current() will return a handle that contains the notify
specified.
If this function returns NotReady, then the notify should have been
scheduled to receive a notification when poll can be called again.
Otherwise if Ready or Err is returned, the Spawn task can be
safely destroyed.
Note that notify itself is passed as a shared reference, and is itself
not required to be a NotifyHandle. The Clone and Into trait bounds
will be used to convert this notify to a NotifyHandle if necessary.
This construction can avoid an unnecessary atomic reference count bump
in some situations.
Unsafety and id
This function and all other *_notify functions on this type will treat
the id specified very carefully, explicitly calling functions like the
notify argument’s clone_id and drop_id functions. It should be
safe to encode a pointer itself into the id specified, such as an
Arc<N> or a Box<N>. The clone_id and drop_id functions are then
intended to be sufficient for the memory management related to that
pointer.
sourcepub fn poll_stream_notify<N>(
&mut self,
notify: &N,
id: usize
) -> Result<Async<Option<<T as Stream>::Item>>, <T as Stream>::Error> where
N: Clone + Into<NotifyHandle>,
T: Stream,
pub fn poll_stream_notify<N>(
&mut self,
notify: &N,
id: usize
) -> Result<Async<Option<<T as Stream>::Item>>, <T as Stream>::Error> where
N: Clone + Into<NotifyHandle>,
T: Stream,
Like poll_future_notify, except polls the underlying stream.
sourcepub fn start_send_notify<N>(
&mut self,
value: <T as Sink>::SinkItem,
notify: &N,
id: usize
) -> Result<AsyncSink<<T as Sink>::SinkItem>, <T as Sink>::SinkError> where
N: Clone + Into<NotifyHandle>,
T: Sink,
pub fn start_send_notify<N>(
&mut self,
value: <T as Sink>::SinkItem,
notify: &N,
id: usize
) -> Result<AsyncSink<<T as Sink>::SinkItem>, <T as Sink>::SinkError> where
N: Clone + Into<NotifyHandle>,
T: Sink,
Invokes the underlying start_send method with this task in place.
If the underlying operation returns NotReady then the notify value
passed in will receive a notification when the operation is ready to be
attempted again.
sourcepub fn poll_flush_notify<N>(
&mut self,
notify: &N,
id: usize
) -> Result<Async<()>, <T as Sink>::SinkError> where
N: Clone + Into<NotifyHandle>,
T: Sink,
pub fn poll_flush_notify<N>(
&mut self,
notify: &N,
id: usize
) -> Result<Async<()>, <T as Sink>::SinkError> where
N: Clone + Into<NotifyHandle>,
T: Sink,
Invokes the underlying poll_complete method with this task in place.
If the underlying operation returns NotReady then the notify value
passed in will receive a notification when the operation is ready to be
attempted again.
sourcepub fn close_notify<N>(
&mut self,
notify: &N,
id: usize
) -> Result<Async<()>, <T as Sink>::SinkError> where
N: Clone + Into<NotifyHandle>,
T: Sink,
pub fn close_notify<N>(
&mut self,
notify: &N,
id: usize
) -> Result<Async<()>, <T as Sink>::SinkError> where
N: Clone + Into<NotifyHandle>,
T: Sink,
Invokes the underlying close method with this task in place.
If the underlying operation returns NotReady then the notify value
passed in will receive a notification when the operation is ready to be
attempted again.
Trait Implementations
Auto Trait Implementations
impl<T> !RefUnwindSafe for Spawn<T>
impl<T: ?Sized> Send for Spawn<T> where
T: Send,
impl<T> !Sync for Spawn<T>
impl<T: ?Sized> Unpin for Spawn<T> where
T: Unpin,
impl<T> !UnwindSafe for Spawn<T>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more