[−][src]Trait futures_io::AsyncWrite
Write bytes asynchronously.
This trait is analogous to the std::io::Write
trait, but integrates
with the asynchronous task system. In particular, the poll_write
method, unlike Write::write
, will automatically queue the current task
for wakeup and return if data is not yet available, rather than blocking
the calling thread.
Required Methods
fn poll_write(&mut self, lw: &LocalWaker, buf: &[u8]) -> Poll<Result<usize>>
Attempt to write bytes from buf
into the object.
On success, returns Ok(Async::Ready(num_bytes_written))
.
If the object is not ready for writing, the method returns
Ok(Async::Pending)
and arranges for the current task (via
lw.waker()
) to receive a notification when the object becomes
readable or is closed.
Implementation
This function may not return errors of kind WouldBlock
or
Interrupted
. Implementations must convert WouldBlock
into
Async::Pending
and either internally retry or convert
Interrupted
into another error kind.
fn poll_flush(&mut self, lw: &LocalWaker) -> Poll<Result<()>>
Attempt to flush the object, ensuring that any buffered data reach their destination.
On success, returns Ok(Async::Ready(()))
.
If flushing cannot immediately complete, this method returns
Ok(Async::Pending)
and arranges for the current task (via
lw.waker()
) to receive a notification when the object can make
progress towards flushing.
Implementation
This function may not return errors of kind WouldBlock
or
Interrupted
. Implementations must convert WouldBlock
into
Async::Pending
and either internally retry or convert
Interrupted
into another error kind.
fn poll_close(&mut self, lw: &LocalWaker) -> Poll<Result<()>>
Attempt to close the object.
On success, returns Ok(Async::Ready(()))
.
If closing cannot immediately complete, this function returns
Ok(Async::Pending)
and arranges for the current task (via
lw.waker()
) to receive a notification when the object can make
progress towards closing.
Implementation
This function may not return errors of kind WouldBlock
or
Interrupted
. Implementations must convert WouldBlock
into
Async::Pending
and either internally retry or convert
Interrupted
into another error kind.
Provided Methods
fn poll_vectored_write(
&mut self,
lw: &LocalWaker,
vec: &[&IoVec]
) -> Poll<Result<usize>>
&mut self,
lw: &LocalWaker,
vec: &[&IoVec]
) -> Poll<Result<usize>>
Attempt to write bytes from vec
into the object using vectored
IO operations.
This method is similar to poll_write
, but allows data from multiple buffers to be written
using a single operation.
On success, returns Ok(Async::Ready(num_bytes_written))
.
If the object is not ready for writing, the method returns
Ok(Async::Pending)
and arranges for the current task (via
lw.waker()
) to receive a notification when the object becomes
readable or is closed.
By default, this method delegates to using poll_write
on the first
buffer in vec
. Objects which support vectored IO should override
this method.
Implementation
This function may not return errors of kind WouldBlock
or
Interrupted
. Implementations must convert WouldBlock
into
Async::Pending
and either internally retry or convert
Interrupted
into another error kind.
Implementations on Foreign Types
impl<T: ?Sized + AsyncWrite> AsyncWrite for Box<T>
[src]
impl<T: ?Sized + AsyncWrite> AsyncWrite for Box<T>
fn poll_write(&mut self, lw: &LocalWaker, buf: &[u8]) -> Poll<Result<usize>>
[src]
fn poll_write(&mut self, lw: &LocalWaker, buf: &[u8]) -> Poll<Result<usize>>
fn poll_vectored_write(
&mut self,
lw: &LocalWaker,
vec: &[&IoVec]
) -> Poll<Result<usize>>
[src]
fn poll_vectored_write(
&mut self,
lw: &LocalWaker,
vec: &[&IoVec]
) -> Poll<Result<usize>>
fn poll_flush(&mut self, lw: &LocalWaker) -> Poll<Result<()>>
[src]
fn poll_flush(&mut self, lw: &LocalWaker) -> Poll<Result<()>>
fn poll_close(&mut self, lw: &LocalWaker) -> Poll<Result<()>>
[src]
fn poll_close(&mut self, lw: &LocalWaker) -> Poll<Result<()>>
impl<'a, T: ?Sized + AsyncWrite> AsyncWrite for &'a mut T
[src]
impl<'a, T: ?Sized + AsyncWrite> AsyncWrite for &'a mut T
fn poll_write(&mut self, lw: &LocalWaker, buf: &[u8]) -> Poll<Result<usize>>
[src]
fn poll_write(&mut self, lw: &LocalWaker, buf: &[u8]) -> Poll<Result<usize>>
fn poll_vectored_write(
&mut self,
lw: &LocalWaker,
vec: &[&IoVec]
) -> Poll<Result<usize>>
[src]
fn poll_vectored_write(
&mut self,
lw: &LocalWaker,
vec: &[&IoVec]
) -> Poll<Result<usize>>
fn poll_flush(&mut self, lw: &LocalWaker) -> Poll<Result<()>>
[src]
fn poll_flush(&mut self, lw: &LocalWaker) -> Poll<Result<()>>
fn poll_close(&mut self, lw: &LocalWaker) -> Poll<Result<()>>
[src]
fn poll_close(&mut self, lw: &LocalWaker) -> Poll<Result<()>>
impl<T: AsMut<[u8]>> AsyncWrite for Cursor<T>
[src]
impl<T: AsMut<[u8]>> AsyncWrite for Cursor<T>
fn poll_write(&mut self, _: &LocalWaker, buf: &[u8]) -> Poll<Result<usize>>
[src]
fn poll_write(&mut self, _: &LocalWaker, buf: &[u8]) -> Poll<Result<usize>>
fn poll_flush(&mut self, _: &LocalWaker) -> Poll<Result<()>>
[src]
fn poll_flush(&mut self, _: &LocalWaker) -> Poll<Result<()>>
fn poll_close(&mut self, lw: &LocalWaker) -> Poll<Result<()>>
[src]
fn poll_close(&mut self, lw: &LocalWaker) -> Poll<Result<()>>
fn poll_vectored_write(
&mut self,
lw: &LocalWaker,
vec: &[&IoVec]
) -> Poll<Result<usize>>
[src]
fn poll_vectored_write(
&mut self,
lw: &LocalWaker,
vec: &[&IoVec]
) -> Poll<Result<usize>>
impl AsyncWrite for Sink
[src]
impl AsyncWrite for Sink
fn poll_write(&mut self, _: &LocalWaker, buf: &[u8]) -> Poll<Result<usize>>
[src]
fn poll_write(&mut self, _: &LocalWaker, buf: &[u8]) -> Poll<Result<usize>>
fn poll_flush(&mut self, _: &LocalWaker) -> Poll<Result<()>>
[src]
fn poll_flush(&mut self, _: &LocalWaker) -> Poll<Result<()>>
fn poll_close(&mut self, lw: &LocalWaker) -> Poll<Result<()>>
[src]
fn poll_close(&mut self, lw: &LocalWaker) -> Poll<Result<()>>
fn poll_vectored_write(
&mut self,
lw: &LocalWaker,
vec: &[&IoVec]
) -> Poll<Result<usize>>
[src]
fn poll_vectored_write(
&mut self,
lw: &LocalWaker,
vec: &[&IoVec]
) -> Poll<Result<usize>>