Struct ntex_service::Pipeline
source · pub struct Pipeline<Req, Svc> { /* private fields */ }Expand description
Pipeline service - pipeline allows to compose multiple service into one service.
Implementations§
source§impl<Req, Svc: Service<Req>> Pipeline<Req, Svc>
impl<Req, Svc: Service<Req>> Pipeline<Req, Svc>
sourcepub fn and_then<Next, F>(self, service: F) -> Pipeline<Req, AndThen<Svc, Next>>where
Self: Sized,
F: IntoService<Next, Svc::Response>,
Next: Service<Svc::Response, Error = Svc::Error>,
pub fn and_then<Next, F>(self, service: F) -> Pipeline<Req, AndThen<Svc, Next>>where
Self: Sized,
F: IntoService<Next, Svc::Response>,
Next: Service<Svc::Response, Error = Svc::Error>,
Call another service after call to this one has resolved successfully.
This function can be used to chain two services together and ensure that the second service isn’t called until call to the fist service have finished. Result of the call to the first service is used as an input parameter for the second service’s call.
Note that this function consumes the receiving service and returns a wrapped version of it.
sourcepub fn then<Next, F>(self, service: F) -> Pipeline<Req, Then<Svc, Next>>where
Self: Sized,
F: IntoService<Next, Result<Svc::Response, Svc::Error>>,
Next: Service<Result<Svc::Response, Svc::Error>, Error = Svc::Error>,
pub fn then<Next, F>(self, service: F) -> Pipeline<Req, Then<Svc, Next>>where
Self: Sized,
F: IntoService<Next, Result<Svc::Response, Svc::Error>>,
Next: Service<Result<Svc::Response, Svc::Error>, Error = Svc::Error>,
Chain on a computation for when a call to the service finished,
passing the result of the call to the next service U.
Note that this function consumes the receiving pipeline and returns a wrapped version of it.
sourcepub fn map<F, Res>(self, f: F) -> Pipeline<Req, Map<Svc, F, Req, Res>>where
Self: Sized,
F: Fn(Svc::Response) -> Res,
pub fn map<F, Res>(self, f: F) -> Pipeline<Req, Map<Svc, F, Req, Res>>where
Self: Sized,
F: Fn(Svc::Response) -> Res,
Map this service’s output to a different type, returning a new service of the resulting type.
This function is similar to the Option::map or Iterator::map where
it will change the type of the underlying service.
Note that this function consumes the receiving service and returns a
wrapped version of it, similar to the existing map methods in the
standard library.
sourcepub fn map_err<F, Err>(self, f: F) -> Pipeline<Req, MapErr<Svc, Req, F, Err>>where
Self: Sized,
F: Fn(Svc::Error) -> Err,
pub fn map_err<F, Err>(self, f: F) -> Pipeline<Req, MapErr<Svc, Req, F, Err>>where
Self: Sized,
F: Fn(Svc::Error) -> Err,
Map this service’s error to a different error, returning a new service.
This function is similar to the Result::map_err where it will change
the error type of the underlying service. This is useful for example to
ensure that services have the same error type.
Note that this function consumes the receiving service and returns a wrapped version of it.
Trait Implementations§
source§impl<Req, Svc: Service<Req>> Service<Req> for Pipeline<Req, Svc>
impl<Req, Svc: Service<Req>> Service<Req> for Pipeline<Req, Svc>
§type Error = <Svc as Service<Req>>::Error
type Error = <Svc as Service<Req>>::Error
§type Future<'f>
where
Self: 'f,
Req: 'f = <Svc as Service<Req>>::Future<'f>
type Future<'f>
where
Self: 'f,
Req: 'f = <Svc as Service<Req>>::Future<'f>
source§fn poll_ready(&self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>
fn poll_ready(&self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>
Ready when the service is able to process requests. Read moresource§fn call(&self, req: Req) -> Self::Future<'_>
fn call(&self, req: Req) -> Self::Future<'_>
Auto Trait Implementations§
impl<Req, Svc> RefUnwindSafe for Pipeline<Req, Svc>where
Req: RefUnwindSafe,
Svc: RefUnwindSafe,
impl<Req, Svc> Send for Pipeline<Req, Svc>where
Req: Send,
Svc: Send,
impl<Req, Svc> Sync for Pipeline<Req, Svc>where
Req: Sync,
Svc: Sync,
impl<Req, Svc> Unpin for Pipeline<Req, Svc>where
Req: Unpin,
Svc: Unpin,
impl<Req, Svc> UnwindSafe for Pipeline<Req, Svc>where
Req: UnwindSafe,
Svc: UnwindSafe,
Blanket Implementations§
source§impl<Svc, Req> IntoService<Svc, Req> for Svcwhere
Svc: Service<Req>,
impl<Svc, Req> IntoService<Svc, Req> for Svcwhere
Svc: Service<Req>,
source§fn into_service(self) -> Svc
fn into_service(self) -> Svc
Service