Struct ntex_service::dev::ServiceChain
source · pub struct ServiceChain<Svc, Req> { /* private fields */ }Expand description
Pipeline builder - pipeline allows to compose multiple service into one service.
Implementations§
source§impl<Svc: Service<Req>, Req> ServiceChain<Svc, Req>
impl<Svc: Service<Req>, Req> ServiceChain<Svc, Req>
sourcepub fn and_then<Next, F>(
self,
service: F
) -> ServiceChain<AndThen<Svc, Next>, Req>where
Self: Sized,
F: IntoService<Next, Svc::Response>,
Next: Service<Svc::Response, Error = Svc::Error>,
pub fn and_then<Next, F>( self, service: F ) -> ServiceChain<AndThen<Svc, Next>, Req>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) -> ServiceChain<Then<Svc, Next>, Req>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) -> ServiceChain<Then<Svc, Next>, Req>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) -> ServiceChain<Map<Svc, F, Req, Res>, Req>where
Self: Sized,
F: Fn(Svc::Response) -> Res,
pub fn map<F, Res>(self, f: F) -> ServiceChain<Map<Svc, F, Req, Res>, Req>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) -> ServiceChain<MapErr<Svc, F, Err>, Req>where
Self: Sized,
F: Fn(Svc::Error) -> Err,
pub fn map_err<F, Err>(self, f: F) -> ServiceChain<MapErr<Svc, F, Err>, Req>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<Svc, Req> Clone for ServiceChain<Svc, Req>where
Svc: Clone,
impl<Svc, Req> Clone for ServiceChain<Svc, Req>where Svc: Clone,
source§impl<Svc: Service<Req>, Req> Service<Req> for ServiceChain<Svc, Req>
impl<Svc: Service<Req>, Req> Service<Req> for ServiceChain<Svc, Req>
§type Error = <Svc as Service<Req>>::Error
type Error = <Svc as Service<Req>>::Error
§type Future<'f> = ServiceCall<'f, Svc, Req>
where
Self: 'f,
Req: 'f
type Future<'f> = ServiceCall<'f, Svc, Req> where Self: 'f, Req: '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<'a>(&'a self, req: Req, ctx: ServiceCtx<'a, Self>) -> Self::Future<'a>
fn call<'a>(&'a self, req: Req, ctx: ServiceCtx<'a, Self>) -> Self::Future<'a>
source§fn map<F, Res>(self, f: F) -> ServiceChain<Map<Self, F, Req, Res>, Req>where
Self: Sized,
F: Fn(Self::Response) -> Res,
fn map<F, Res>(self, f: F) -> ServiceChain<Map<Self, F, Req, Res>, Req>where Self: Sized, F: Fn(Self::Response) -> Res,
source§fn map_err<F, E>(self, f: F) -> ServiceChain<MapErr<Self, F, E>, Req>where
Self: Sized,
F: Fn(Self::Error) -> E,
fn map_err<F, E>(self, f: F) -> ServiceChain<MapErr<Self, F, E>, Req>where Self: Sized, F: Fn(Self::Error) -> E,
source§fn chain(self) -> ServiceChain<Self, Req>where
Self: Sized,
fn chain(self) -> ServiceChain<Self, Req>where Self: Sized,
Self to a ServiceChainAuto Trait Implementations§
impl<Svc, Req> RefUnwindSafe for ServiceChain<Svc, Req>where Req: RefUnwindSafe, Svc: RefUnwindSafe,
impl<Svc, Req> Send for ServiceChain<Svc, Req>where Req: Send, Svc: Send,
impl<Svc, Req> Sync for ServiceChain<Svc, Req>where Req: Sync, Svc: Sync,
impl<Svc, Req> Unpin for ServiceChain<Svc, Req>where Req: Unpin, Svc: Unpin,
impl<Svc, Req> UnwindSafe for ServiceChain<Svc, Req>where Req: UnwindSafe, Svc: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
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
Servicesource§fn into_chain(self) -> ServiceChain<Svc, Req>where
Self: Sized,
fn into_chain(self) -> ServiceChain<Svc, Req>where Self: Sized,
Self to a ServiceChain