1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-28 18:02:39 +01:00
actix-web/actix-http/src/h1/upgrade.rs

39 lines
1009 B
Rust
Raw Normal View History

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