accept shared ref in some methods of framed::State type

This commit is contained in:
Nikolay Kim 2021-01-24 00:02:36 +06:00
parent 45eeba274a
commit c47ec4ae25
3 changed files with 7 additions and 3 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.2.0-b.5] - 2021-01-23
* accept shared ref in some methods of framed::State type
## [0.2.0-b.4] - 2021-01-23
* http: Refactor h1 dispatcher

View file

@ -1,6 +1,6 @@
[package]
name = "ntex"
version = "0.2.0-b.4"
version = "0.2.0-b.5"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Framework for composable network services"
readme = "README.md"

View file

@ -374,7 +374,7 @@ impl State {
pub async fn next<T, U>(
&self,
io: &mut T,
codec: &mut U,
codec: &U,
) -> Result<Option<U::Item>, Either<U::Error, io::Error>>
where
T: AsyncRead + AsyncWrite + Unpin,
@ -410,7 +410,7 @@ impl State {
pub fn poll_next<T, U>(
&self,
io: &mut T,
codec: &mut U,
codec: &U,
cx: &mut Context<'_>,
) -> Poll<Result<Option<U::Item>, Either<U::Error, io::Error>>>
where