1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-31 02:52:53 +01:00
actix-web/actix-http/src/h1/upgrade.rs

42 lines
1.1 KiB
Rust
Raw Normal View History

2019-04-08 14:51:16 -07:00
use std::marker::PhantomData;
use std::task::{Context, Poll};
2019-04-08 14:51:16 -07:00
use actix_codec::Framed;
use actix_service::{Service, ServiceFactory};
2019-12-13 11:24:57 +06:00
use futures_util::future::Ready;
2019-04-08 14:51:16 -07:00
use crate::error::Error;
use crate::h1::Codec;
use crate::request::Request;
pub struct UpgradeHandler<T>(PhantomData<T>);
impl<T> ServiceFactory for UpgradeHandler<T> {
2019-12-02 17:33:11 +06:00
type Config = ();
2019-04-08 14:51:16 -07:00
type Request = (Request, Framed<T, Codec>);
type Response = ();
type Error = Error;
type Service = UpgradeHandler<T>;
type InitError = Error;
type Future = Ready<Result<Self::Service, Self::InitError>>;
2019-04-08 14:51:16 -07:00
2019-12-02 21:37:13 +06:00
fn new_service(&self, _: ()) -> Self::Future {
2019-04-08 14:51:16 -07:00
unimplemented!()
}
}
impl<T> Service for UpgradeHandler<T> {
type Request = (Request, Framed<T, Codec>);
type Response = ();
type Error = Error;
type Future = Ready<Result<Self::Response, Self::Error>>;
2019-04-08 14:51:16 -07:00
2019-12-08 00:46:51 +06:00
fn poll_ready(&mut self, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
Poll::Ready(Ok(()))
2019-04-08 14:51:16 -07:00
}
fn call(&mut self, _: Self::Request) -> Self::Future {
unimplemented!()
}
}