Process the context and call the next middleware
(
self, context: PipelineContext, next_func: Callable[[], Awaitable[None]]
)
| 110 | |
| 111 | @abstractmethod |
| 112 | async def process( |
| 113 | self, context: PipelineContext, next_func: Callable[[], Awaitable[None]] |
| 114 | ) -> None: |
| 115 | """Process the context and call the next middleware""" |
| 116 | pass |
| 117 | |
| 118 | |
| 119 | class Pipeline: |