mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
use ntex-io instead of framed
This commit is contained in:
parent
dafd339817
commit
3dbba47ab1
62 changed files with 1545 additions and 5639 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue