1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2025-03-01 00:51:05 +00:00
actix-web/actix-http/src/h1/upgrade.rs

43 lines
1.1 KiB
Rust
Raw Normal View History

2019-04-08 21:51:16 +00:00
use std::marker::PhantomData;
use actix_codec::Framed;
2019-05-12 15:34:51 +00:00
use actix_server_config::ServerConfig;
2019-04-08 21:51:16 +00:00
use actix_service::{NewService, Service};
use futures::future::FutureResult;
use futures::{Async, Poll};
use crate::error::Error;
use crate::h1::Codec;
use crate::request::Request;
pub struct UpgradeHandler<T>(PhantomData<T>);
impl<T> NewService for UpgradeHandler<T> {
2019-05-12 15:34:51 +00:00
type Config = ServerConfig;
2019-04-08 21:51:16 +00:00
type Request = (Request, Framed<T, Codec>);
type Response = ();
type Error = Error;
type Service = UpgradeHandler<T>;
type InitError = Error;
type Future = FutureResult<Self::Service, Self::InitError>;
2019-05-12 15:34:51 +00:00
fn new_service(&self, _: &ServerConfig) -> Self::Future {
2019-04-08 21:51:16 +00:00
unimplemented!()
}
}
impl<T> Service for UpgradeHandler<T> {
type Request = (Request, Framed<T, Codec>);
type Response = ();
type Error = Error;
type Future = FutureResult<Self::Response, Self::Error>;
fn poll_ready(&mut self) -> Poll<(), Self::Error> {
Ok(Async::Ready(()))
}
fn call(&mut self, _: Self::Request) -> Self::Future {
unimplemented!()
}
}