ntex 3.7.2

Framework for composable network services
Documentation
use std::io;

use crate::http::ResponseError;
use crate::io::Filter;
use crate::service::{Service, ServiceCtx, ServiceFactory, cfg::SharedCfg};

use super::control::{Control, ControlAck};

#[derive(Debug, Default)]
/// Default control service
pub struct DefaultControlService;

impl<F, Err> ServiceFactory<Control<F, Err>, SharedCfg> for DefaultControlService
where
    F: Filter,
    Err: ResponseError,
{
    type Response = ControlAck<F>;
    type Error = io::Error;
    type Service = DefaultControlService;
    type InitError = io::Error;

    #[inline]
    async fn create(&self, _: SharedCfg) -> Result<Self::Service, Self::InitError> {
        Ok(DefaultControlService)
    }
}

impl<F, Err> Service<Control<F, Err>> for DefaultControlService
where
    F: Filter,
    Err: ResponseError,
{
    type Response = ControlAck<F>;
    type Error = io::Error;

    #[inline]
    async fn call(
        &self,
        req: Control<F, Err>,
        _: ServiceCtx<'_, Self>,
    ) -> Result<Self::Response, Self::Error> {
        Ok(req.ack())
    }
}