Skip to content

Commit

Permalink
Add Response::bytes_stream()
Browse files Browse the repository at this point in the history
This converts the `Response` into a `Stream` of `Bytes`.

Closes #734
  • Loading branch information
seanmonstar committed Dec 23, 2019
1 parent 24abf2f commit 6b75cbc
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions src/async_impl/response.rs
Expand Up @@ -292,6 +292,33 @@ impl Response {
}
}

/// Convert the response into a `Stream` of `Bytes` from the body.
///
/// # Example
///
/// ```
/// use futures_util::StreamExt;
///
/// # async fn run() -> Result<(), Box<dyn std::error::Error>> {
/// let mut stream = reqwest::get("http://httpbin.org/ip")
/// .await?
/// .bytes_stream();
///
/// while let Some(item) = stream.next().await {
/// println!("Chunk: {:?}", item?);
/// }
/// # Ok(())
/// # }
/// ```
///
/// # Optional
///
/// This requires the optional `stream` feature to be enabled.
#[cfg(feature = "stream")]
pub fn bytes_stream(self) -> impl futures_core::Stream<Item = crate::Result<Bytes>> {
self.body
}

// util methods

/// Turn a response into an error if the server returned an error.
Expand Down

0 comments on commit 6b75cbc

Please sign in to comment.