Refactor framed io (#67)

* refactor framed io

* allow to add filters

* move io code to separate module

* add into_boxed()

* remove uneeded IO_STOP state

* simplify on_disconnect storage

* cleanup io state

* add io connector
This commit is contained in:
Nikolay Kim 2021-12-13 17:19:43 +06:00 committed by GitHub
parent 2188d92725
commit 841ad736d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
30 changed files with 3839 additions and 408 deletions

View file

@ -3,6 +3,7 @@ members = [
"ntex",
"ntex-bytes",
"ntex-codec",
"ntex-io",
"ntex-router",
"ntex-rt",
"ntex-service",
@ -14,6 +15,7 @@ members = [
ntex = { path = "ntex" }
ntex-bytes = { path = "ntex-bytes" }
ntex-codec = { path = "ntex-codec" }
ntex-io = { path = "ntex-io" }
ntex-router = { path = "ntex-router" }
ntex-rt = { path = "ntex-rt" }
ntex-service = { path = "ntex-service" }