You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
They have implemented this trait for UnixListner and TCPListner of tokio
It is very convenience to serve a http server upon interprocess's stream, and without any dependency, such as hyper.
Describe the solution you'd like
I hope interprocess can impl this trait behind a feature gate axum
Describe alternatives you've considered
The another solution is tht create a stream, and use hyper to serve on it. There is no guide about it. If someone wants to it, i can document it later.
Additional context
Nope.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
From axum 0.8, they have introduced a trait, which can directly pass to
serve
fn:UnixListner
andTCPListner
of tokioIt is very convenience to serve a http server upon interprocess's stream, and without any dependency, such as
hyper
.Describe the solution you'd like
I hope interprocess can impl this trait behind a feature gate
axum
Describe alternatives you've considered
The another solution is tht create a stream, and use
hyper
to serve on it. There is no guide about it. If someone wants to it, i can document it later.Additional context
Nope.
The text was updated successfully, but these errors were encountered: