|
|
@ -67,7 +67,7 @@ Here we use <a href="https://docs.python.org/3/library/time.html#time.perf_count |
|
|
|
|
|
|
|
### Class-Based Middleware |
|
|
|
|
|
|
|
It is possible to define a custom `http` middleware using classes. |
|
|
|
It is possible to define a custom `http` middleware using classes. |
|
|
|
|
|
|
|
We will implement the class-based middleware with exactly the same functionality as in the example above. |
|
|
|
|
|
|
@ -75,7 +75,7 @@ We will use an abstract `BaseHTTPMiddleware` class from Starlette that allows to |
|
|
|
|
|
|
|
{* ../../docs_src/middleware/tutorial002.py hl[7:13,17] *} |
|
|
|
|
|
|
|
To create the middleware we need to override the `async dispatch` method of the `BaseHTTPMiddleware` class. |
|
|
|
To create the middleware we need to override the `async dispatch` method of the `BaseHTTPMiddleware` class. |
|
|
|
|
|
|
|
The functionality of the method is very similar to the decorated middleware function from the previous example. |
|
|
|
|
|
|
|