| 39 | * required to handle an incoming request. |
| 40 | */ |
| 41 | export interface SequenceHandler { |
| 42 | /** |
| 43 | * Handle the request by running the configured sequence of actions. |
| 44 | * |
| 45 | * @param context - The request context: HTTP request and response objects, |
| 46 | * per-request IoC container and more. |
| 47 | */ |
| 48 | handle(context: RequestContext): Promise<void>; |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * The default implementation of SequenceHandler. |
no outgoing calls
no test coverage detected