use ntex-io instead of framed

This commit is contained in:
Nikolay Kim 2021-12-15 14:09:36 +06:00
parent dafd339817
commit 3dbba47ab1
62 changed files with 1545 additions and 5639 deletions

View file

@ -4,9 +4,9 @@ use ntex_bytes::{BytesMut, PoolRef};
use super::{state::Flags, IoRef, WriteReadiness};
pub struct ReadState(pub(super) IoRef);
pub struct ReadContext(pub(super) IoRef);
impl ReadState {
impl ReadContext {
#[inline]
pub fn memory_pool(&self) -> PoolRef {
self.0 .0.pool.get()
@ -60,9 +60,9 @@ impl ReadState {
}
}
pub struct WriteState(pub(super) IoRef);
pub struct WriteContext(pub(super) IoRef);
impl WriteState {
impl WriteContext {
#[inline]
pub fn memory_pool(&self) -> PoolRef {
self.0 .0.pool.get()