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.
The middleware is connected to the FastAPI application using `app.add_middleware` method.
/// note
You can read more about Starlette middleware in [Starlette documentation](https://www.starlette.io/middleware).
///
## Other middlewares
You can later read more about other middlewares in the [Advanced User Guide: Advanced Middleware](../advanced/middleware.md){.internal-link target=_blank}.