mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 04:47:39 +03:00
Prepare release
This commit is contained in:
parent
5869141954
commit
c864b10e62
14 changed files with 32 additions and 29 deletions
|
@ -165,7 +165,7 @@ mod tests {
|
|||
#[ntex::test]
|
||||
async fn test_call() {
|
||||
let cnt = Rc::new(Cell::new(0));
|
||||
let srv = chain(Srv1(cnt.clone())).and_then(Srv2(cnt)).pipeline();
|
||||
let srv = chain(Srv1(cnt.clone())).and_then(Srv2(cnt)).into_pipeline();
|
||||
let res = srv.call("srv1").await;
|
||||
assert!(res.is_ok());
|
||||
assert_eq!(res.unwrap(), ("srv1", "srv2"));
|
||||
|
|
|
@ -235,7 +235,7 @@ mod tests {
|
|||
})
|
||||
.clone(),
|
||||
)
|
||||
.pipeline();
|
||||
.into_pipeline();
|
||||
|
||||
assert_eq!(
|
||||
lazy(|cx| srv.poll_ready(cx)).await,
|
||||
|
@ -257,7 +257,7 @@ mod tests {
|
|||
Ok((req, ()))
|
||||
})
|
||||
.clone()
|
||||
.pipeline();
|
||||
.into_pipeline();
|
||||
|
||||
assert_eq!(
|
||||
lazy(|cx| srv.poll_ready(cx)).await,
|
||||
|
|
|
@ -3,9 +3,7 @@ use std::{fmt, future::Future, pin::Pin, task::Context, task::Poll};
|
|||
use crate::ctx::{ServiceCtx, WaitersRef};
|
||||
|
||||
pub type BoxFuture<'a, I, E> = Pin<Box<dyn Future<Output = Result<I, E>> + 'a>>;
|
||||
|
||||
pub struct BoxService<Req, Res, Err>(Box<dyn ServiceObj<Req, Response = Res, Error = Err>>);
|
||||
|
||||
pub struct BoxServiceFactory<Cfg, Req, Res, Err, InitErr>(
|
||||
Box<dyn ServiceFactoryObj<Req, Cfg, Response = Res, Error = Err, InitError = InitErr>>,
|
||||
);
|
||||
|
@ -70,12 +68,10 @@ where
|
|||
type Response = S::Response;
|
||||
type Error = S::Error;
|
||||
|
||||
#[inline]
|
||||
fn poll_ready(&self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
||||
crate::Service::poll_ready(self, cx)
|
||||
}
|
||||
|
||||
#[inline]
|
||||
fn poll_shutdown(&self, cx: &mut Context<'_>) -> Poll<()> {
|
||||
crate::Service::poll_shutdown(self, cx)
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@ use crate::middleware::{ApplyMiddleware, Middleware};
|
|||
use crate::then::{Then, ThenFactory};
|
||||
use crate::{IntoService, IntoServiceFactory, Pipeline, Service, ServiceFactory};
|
||||
|
||||
/// Constructs new pipeline with one service in pipeline chain.
|
||||
/// Constructs new chain with one service.
|
||||
pub fn chain<Svc, Req, F>(service: F) -> ServiceChain<Svc, Req>
|
||||
where
|
||||
Svc: Service<Req>,
|
||||
|
@ -23,7 +23,7 @@ where
|
|||
}
|
||||
}
|
||||
|
||||
/// Constructs new pipeline factory with one service factory.
|
||||
/// Constructs new chain factory with one service factory.
|
||||
pub fn chain_factory<T, R, C, F>(factory: F) -> ServiceChainFactory<T, R, C>
|
||||
where
|
||||
T: ServiceFactory<R, C>,
|
||||
|
@ -35,7 +35,7 @@ where
|
|||
}
|
||||
}
|
||||
|
||||
/// Pipeline builder - pipeline allows to compose multiple service into one service.
|
||||
/// Chain builder - chain allows to compose multiple service into one service.
|
||||
pub struct ServiceChain<Svc, Req> {
|
||||
service: Svc,
|
||||
_t: PhantomData<Req>,
|
||||
|
@ -139,7 +139,7 @@ impl<Svc: Service<Req>, Req> ServiceChain<Svc, Req> {
|
|||
}
|
||||
|
||||
/// Create service pipeline
|
||||
pub fn pipeline(self) -> Pipeline<Svc> {
|
||||
pub fn into_pipeline(self) -> Pipeline<Svc> {
|
||||
Pipeline::new(self.service)
|
||||
}
|
||||
}
|
||||
|
@ -239,11 +239,11 @@ impl<T: ServiceFactory<Req, C>, Req, C> ServiceChainFactory<T, Req, C> {
|
|||
}
|
||||
}
|
||||
|
||||
/// Create `NewService` to chain on a computation for when a call to the
|
||||
/// Create chain factory to 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
|
||||
/// Note that this function consumes the receiving factory and returns a
|
||||
/// wrapped version of it.
|
||||
pub fn then<F, U>(self, factory: F) -> ServiceChainFactory<ThenFactory<T, U>, Req, C>
|
||||
where
|
||||
|
@ -279,7 +279,7 @@ impl<T: ServiceFactory<Req, C>, Req, C> ServiceChainFactory<T, Req, C> {
|
|||
}
|
||||
}
|
||||
|
||||
/// Map this service's error to a different error, returning a new service.
|
||||
/// Map this service's error to a different error.
|
||||
pub fn map_err<F, E>(
|
||||
self,
|
||||
f: F,
|
||||
|
@ -294,7 +294,7 @@ impl<T: ServiceFactory<Req, C>, Req, C> ServiceChainFactory<T, Req, C> {
|
|||
}
|
||||
}
|
||||
|
||||
/// Map this factory's init error to a different error, returning a new service.
|
||||
/// Map this factory's init error to a different error, returning a new factory.
|
||||
pub fn map_init_err<F, E>(
|
||||
self,
|
||||
f: F,
|
||||
|
|
|
@ -164,7 +164,10 @@ mod tests {
|
|||
#[ntex::test]
|
||||
async fn test_call() {
|
||||
let cnt = Rc::new(Cell::new(0));
|
||||
let srv = chain(Srv1(cnt.clone())).then(Srv2(cnt)).clone().pipeline();
|
||||
let srv = chain(Srv1(cnt.clone()))
|
||||
.then(Srv2(cnt))
|
||||
.clone()
|
||||
.into_pipeline();
|
||||
|
||||
let res = srv.call(Ok("srv1")).await;
|
||||
assert!(res.is_ok());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue