Struct tower::ServiceBuilder [−][src]
pub struct ServiceBuilder<L> { /* fields omitted */ }
Expand description
Declaratively construct Service
values.
ServiceBuilder
provides a builder-like interface for composing
layers to be applied to a Service
.
Service
A Service
is a trait representing an asynchronous function of a request
to a response. It is similar to async fn(Request) -> Result<Response, Error>
.
A Service
is typically bound to a single transport, such as a TCP
connection. It defines how all inbound or outbound requests are handled
by that connection.
Order
The order in which layers are added impacts how requests are handled. Layers
that are added first will be called with the request first. The argument to
service
will be last to see the request.
ServiceBuilder::new()
.buffer(100)
.concurrency_limit(10)
.service(svc)
In the above example, the buffer layer receives the request first followed
by concurrency_limit
. buffer
enables up to 100 request to be in-flight
on top of the requests that have already been forwarded to the next
layer. Combined with concurrency_limit
, this allows up to 110 requests to be
in-flight.
ServiceBuilder::new()
.concurrency_limit(10)
.buffer(100)
.service(svc)
The above example is similar, but the order of layers is reversed. Now,
concurrency_limit
applies first and only allows 10 requests to be in-flight
total.
Examples
A Service
stack with a single layer:
ServiceBuilder::new()
.concurrency_limit(5)
.service(svc);
A Service
stack with multiple layers that contain rate limiting,
in-flight request limits, and a channel-backed, clonable Service
:
ServiceBuilder::new()
.buffer(5)
.concurrency_limit(5)
.rate_limit(5, Duration::from_secs(1))
.service(svc);
Implementations
Create a new ServiceBuilder
.
Add a new layer T
into the ServiceBuilder
.
This wraps the inner service with the service provided by a user-defined
Layer
. The provided layer must implement the Layer
trait.
pub fn option_layer<T>(
self,
layer: Option<T>
) -> ServiceBuilder<Stack<Either<T, Identity>, L>>
pub fn option_layer<T>(
self,
layer: Option<T>
) -> ServiceBuilder<Stack<Either<T, Identity>, L>>
Optionally add a new layer T
into the ServiceBuilder
.
// Apply a timeout if configured
ServiceBuilder::new()
.option_layer(timeout.map(TimeoutLayer::new))
.service(svc)
Buffer requests when when the next layer is not ready.
This wraps the inner service with an instance of the Buffer
middleware.
Limit the max number of in-flight requests.
A request is in-flight from the time the request is received until the response future completes. This includes the time spent in the next layers.
This wraps the inner service with an instance of the
ConcurrencyLimit
middleware.
Limit requests to at most num
per the given duration.
This wraps the inner service with an instance of the RateLimit
middleware.
Fail requests that take longer than timeout
.
If the next layer takes more than timeout
to respond to a request,
processing is terminated and an error is returned.
This wraps the inner service with an instance of the timeout
middleware.
pub fn map_request<F, R1, R2>(
self,
f: F
) -> ServiceBuilder<Stack<MapRequestLayer<F>, L>> where
F: FnMut(R1) -> R2 + Clone,
pub fn map_request<F, R1, R2>(
self,
f: F
) -> ServiceBuilder<Stack<MapRequestLayer<F>, L>> where
F: FnMut(R1) -> R2 + Clone,
Map one request type to another.
This wraps the inner service with an instance of the MapRequest
middleware.
Examples
Changing the type of a request:
use tower::ServiceBuilder;
use tower::ServiceExt;
// Suppose we have some `Service` whose request type is `String`:
let string_svc = tower::service_fn(|request: String| async move {
println!("request: {}", request);
Ok(())
});
// ...but we want to call that service with a `usize`. What do we do?
let usize_svc = ServiceBuilder::new()
// Add a middlware that converts the request type to a `String`:
.map_request(|request: usize| format!("{}", request))
// ...and wrap the string service with that middleware:
.service(string_svc);
// Now, we can call that service with a `usize`:
usize_svc.oneshot(42).await?;
Modifying the request value:
use tower::ServiceBuilder;
use tower::ServiceExt;
// A service that takes a number and returns it:
let svc = tower::service_fn(|request: usize| async move {
Ok(request)
});
let svc = ServiceBuilder::new()
// Add a middleware that adds 1 to each request
.map_request(|request: usize| request + 1)
.service(svc);
let response = svc.oneshot(1).await?;
assert_eq!(response, 2);
Map one response type to another.
This wraps the inner service with an instance of the MapResponse
middleware.
See the documentation for the map_response
combinator for details.
Map one error type to another.
This wraps the inner service with an instance of the MapErr
middleware.
See the documentation for the map_err
combinator for details.
Composes a function that transforms futures produced by the service.
This wraps the inner service with an instance of the MapFutureLayer
middleware.
See the documentation for the map_future
combinator for details.
Apply an asynchronous function after the service, regardless of whether the future succeeds or fails.
This wraps the inner service with an instance of the Then
middleware.
This is similar to the map_response
and map_err
functions,
except that the same function is invoked when the service’s future
completes, whether it completes successfully or fails. This function
takes the Result
returned by the service’s future, and returns a
Result
.
See the documentation for the then
combinator for details.
Executes a new future after this service’s future resolves. This does
not alter the behaviour of the poll_ready
method.
This method can be used to change the Response
type of the service
into a different type. You can use this method to chain along a computation once the
service’s response has been resolved.
This wraps the inner service with an instance of the AndThen
middleware.
See the documentation for the and_then
combinator for details.
Maps this service’s result type (Result<Self::Response, Self::Error>
)
to a different value, regardless of whether the future succeeds or
fails.
This wraps the inner service with an instance of the MapResult
middleware.
See the documentation for the map_result
combinator for details.
Returns the underlying Layer
implementation.
Wrap the service S
with the middleware provided by this
ServiceBuilder
’s Layer
’s, returning a new Service
.
Wrap the async function F
with the middleware provided by this ServiceBuilder
’s
Layer
s, returning a new Service
.
This is a convenience method which is equivalent to calling
ServiceBuilder::service
with a service_fn
, like this:
ServiceBuilder::new()
// ...
.service(service_fn(handler_fn))
Example
use std::time::Duration;
use tower::{ServiceBuilder, ServiceExt, BoxError, service_fn};
async fn handle(request: &'static str) -> Result<&'static str, BoxError> {
Ok(request)
}
let svc = ServiceBuilder::new()
.buffer(1024)
.timeout(Duration::from_secs(10))
.service_fn(handle);
let response = svc.oneshot("foo").await?;
assert_eq!(response, "foo");
Check that the builder implements Clone
.
This can be useful when debugging type errors in ServiceBuilder
s with lots of layers.
Doesn’t actually change the builder but serves as a type check.
Example
use tower::ServiceBuilder;
let builder = ServiceBuilder::new()
// Do something before processing the request
.map_request(|request: String| {
println!("got request!");
request
})
// Ensure our `ServiceBuilder` can be cloned
.check_clone()
// Do something after processing the request
.map_response(|response: String| {
println!("got response!");
response
});
Check that the builder when given a service of type S
produces a service that implements
Clone
.
This can be useful when debugging type errors in ServiceBuilder
s with lots of layers.
Doesn’t actually change the builder but serves as a type check.
Example
use tower::ServiceBuilder;
let builder = ServiceBuilder::new()
// Do something before processing the request
.map_request(|request: String| {
println!("got request!");
request
})
// Ensure that the service produced when given a `MyService` implements
.check_service_clone::<MyService>()
// Do something after processing the request
.map_response(|response: String| {
println!("got response!");
response
});
pub fn check_service<S, T, U, E>(self) -> Self where
L: Layer<S>,
L::Service: Service<T, Response = U, Error = E>,
pub fn check_service<S, T, U, E>(self) -> Self where
L: Layer<S>,
L::Service: Service<T, Response = U, Error = E>,
Check that the builder when given a service of type S
produces a service with the given
request, response, and error types.
This can be useful when debugging type errors in ServiceBuilder
s with lots of layers.
Doesn’t actually change the builder but serves as a type check.
Example
use tower::ServiceBuilder;
use std::task::{Poll, Context};
use tower::{Service, ServiceExt};
// An example service
struct MyService;
impl Service<Request> for MyService {
type Response = Response;
type Error = Error;
type Future = futures_util::future::Ready<Result<Response, Error>>;
fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
// ...
}
fn call(&mut self, request: Request) -> Self::Future {
// ...
}
}
struct Request;
struct Response;
struct Error;
struct WrappedResponse(Response);
let builder = ServiceBuilder::new()
// At this point in the builder if given a `MyService` it produces a service that
// accepts `Request`s, produces `Response`s, and fails with `Error`s
.check_service::<MyService, Request, Response, Error>()
// Wrap responses in `WrappedResponse`
.map_response(|response: Response| WrappedResponse(response))
// Now the response type will be `WrappedResponse`
.check_service::<MyService, _, WrappedResponse, _>();
Trait Implementations
Auto Trait Implementations
impl<L> RefUnwindSafe for ServiceBuilder<L> where
L: RefUnwindSafe,
impl<L> Send for ServiceBuilder<L> where
L: Send,
impl<L> Sync for ServiceBuilder<L> where
L: Sync,
impl<L> Unpin for ServiceBuilder<L> where
L: Unpin,
impl<L> UnwindSafe for ServiceBuilder<L> where
L: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more