Rename Ctx to ServiceCtx

This commit is contained in:
Nikolay Kim 2023-06-19 18:38:23 +06:00
parent 4714064872
commit 108e2ac20a
54 changed files with 217 additions and 157 deletions

View file

@ -4,7 +4,7 @@
//! will be aborted.
use std::{fmt, future::Future, marker, pin::Pin, task::Context, task::Poll};
use ntex_service::{Ctx, IntoService, Middleware, Service, ServiceCall};
use ntex_service::{IntoService, Middleware, Service, ServiceCall, ServiceCtx};
use crate::future::Either;
use crate::time::{sleep, Millis, Sleep};
@ -125,7 +125,7 @@ where
type Error = TimeoutError<S::Error>;
type Future<'f> = Either<TimeoutServiceResponse<'f, S, R>, TimeoutServiceResponse2<'f, S, R>> where Self: 'f, R: 'f;
fn call<'a>(&'a self, request: R, ctx: Ctx<'a, Self>) -> Self::Future<'a> {
fn call<'a>(&'a self, request: R, ctx: ServiceCtx<'a, Self>) -> Self::Future<'a> {
if self.timeout.is_zero() {
Either::Right(TimeoutServiceResponse2 {
fut: ctx.call(&self.service, request),
@ -236,7 +236,7 @@ mod tests {
type Error = SrvError;
type Future<'f> = BoxFuture<'f, Result<(), SrvError>>;
fn call<'a>(&'a self, _: (), _: Ctx<'a, Self>) -> Self::Future<'a> {
fn call<'a>(&'a self, _: (), _: ServiceCtx<'a, Self>) -> Self::Future<'a> {
let fut = crate::time::sleep(self.0);
Box::pin(async move {
fut.await;