[−][src]Struct tower_buffer::Buffer
Adds a buffer in front of an inner service.
See crate level documentation for more details.
Methods
impl<T, Request> Buffer<T, Request> where
T: Service<Request>,
T::Error: Into<Box<dyn Error + Send + Sync>>, [src]
T: Service<Request>,
T::Error: Into<Box<dyn Error + Send + Sync>>,
pub fn new(service: T, bound: usize) -> Self where
T: Send + 'static,
T::Future: Send,
T::Error: Send + Sync,
Request: Send + 'static, [src]
T: Send + 'static,
T::Future: Send,
T::Error: Send + Sync,
Request: Send + 'static,
Creates a new Buffer wrapping service.
bound gives the maximal number of requests that can be queued for the service before
backpressure is applied to callers.
The default Tokio executor is used to run the given service, which means that this method must be called while on the Tokio runtime.
pub fn with_executor<E>(service: T, bound: usize, executor: &mut E) -> Self where
E: WorkerExecutor<T, Request>, [src]
E: WorkerExecutor<T, Request>,
Creates a new Buffer wrapping service.
executor is used to spawn a new Worker task that is dedicated to
draining the buffer and dispatching the requests to the internal
service.
bound gives the maximal number of requests that can be queued for the service before
backpressure is applied to callers.
Trait Implementations
impl<T, Request> Clone for Buffer<T, Request> where
T: Service<Request>, [src]
T: Service<Request>,
fn clone(&self) -> Self[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl<T, Request> Service<Request> for Buffer<T, Request> where
T: Service<Request>,
T::Error: Into<Box<dyn Error + Send + Sync>>, [src]
T: Service<Request>,
T::Error: Into<Box<dyn Error + Send + Sync>>,
type Response = T::Response
Responses given by the service.
type Error = Box<dyn Error + Send + Sync>
Errors produced by the service.
type Future = ResponseFuture<T::Future>
The future response value.
fn poll_ready(&mut self) -> Poll<(), Self::Error>[src]
fn call(&mut self, request: Request) -> Self::Future[src]
Auto Trait Implementations
impl<T, Request> Sync for Buffer<T, Request> where
Request: Send,
<T as Service<Request>>::Future: Send,
Request: Send,
<T as Service<Request>>::Future: Send,
impl<T, Request> Unpin for Buffer<T, Request>
impl<T, Request> Send for Buffer<T, Request> where
Request: Send,
<T as Service<Request>>::Future: Send,
Request: Send,
<T as Service<Request>>::Future: Send,
impl<T, Request> !UnwindSafe for Buffer<T, Request>
impl<T, Request> !RefUnwindSafe for Buffer<T, Request>
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> From<T> for T[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,