Merge pull request #1530 from cumthugo/write_func_in_pipe
sync/pipe: write all user data to pipe
This commit is contained in:
commit
d690a1717f
1 changed files with 10 additions and 0 deletions
|
@ -294,6 +294,16 @@ where
|
||||||
WriteFuture { pipe: self, buf }
|
WriteFuture { pipe: self, buf }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Write all bytes to the pipe.
|
||||||
|
///
|
||||||
|
/// This method writes all bytes from `buf` into the pipe
|
||||||
|
pub async fn write_all(&self, mut buf: &[u8]) {
|
||||||
|
while !buf.is_empty() {
|
||||||
|
let n = self.write(buf).await;
|
||||||
|
buf = &buf[n..];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// Attempt to immediately write some bytes to the pipe.
|
/// Attempt to immediately write some bytes to the pipe.
|
||||||
///
|
///
|
||||||
/// This method will either write a nonzero amount of bytes to the pipe immediately,
|
/// This method will either write a nonzero amount of bytes to the pipe immediately,
|
||||||
|
|
Loading…
Reference in a new issue