type Dispatcher<T, B> = Dispatcher<Client<B>, B, T, Client>;
Aliased Type§
struct Dispatcher<T, B> {
conn: Conn<T, <B as Body>::Data, Client>,
dispatch: Client<B>,
body_tx: Option<Sender>,
body_rx: Pin<Box<Option<B>>>,
is_closing: bool,
}
Fields§
§conn: Conn<T, <B as Body>::Data, Client>
§dispatch: Client<B>
§body_tx: Option<Sender>
§body_rx: Pin<Box<Option<B>>>
§is_closing: bool
Implementations
Source§impl<D, Bs, I, T> Dispatcher<D, Bs, I, T>
impl<D, Bs, I, T> Dispatcher<D, Bs, I, T>
pub(crate) fn new(dispatch: D, conn: Conn<I, Bs::Data, T>) -> Self
pub(crate) fn into_inner(self) -> (I, Bytes, D)
Sourcepub(crate) fn poll_without_shutdown(
&mut self,
cx: &mut Context<'_>,
) -> Poll<Result<()>>
pub(crate) fn poll_without_shutdown( &mut self, cx: &mut Context<'_>, ) -> Poll<Result<()>>
Run this dispatcher until HTTP says this connection is done,
but don’t call Write::shutdown
on the underlying IO.
This is useful for old-style HTTP upgrades, but ignores newer-style upgrade API.