-
Notifications
You must be signed in to change notification settings - Fork 13
Middleware pipeline
Adam Bajguz edited this page Aug 23, 2020
·
25 revisions
Typin uses middleware pipeline to execute commands. The pipeline starts just after parsing command input. By default it consists only of Typin middlewares that are always executed at the end of the pipeline, just before IMiddlewareExtensions.PipelineTermination
action.
To define a middleware, just create a new class that implements the IMiddleware interface:
public sealed class ExampleMiddleware : IMiddleware
{
public async Task HandleAsync(ICliContext context, CommandPipelineHandlerDelegate next, CancellationToken cancellationToken)
{
context.Console.Output.WriteLine("-- Before command execution --");
await next();
context.Console.Output.WriteLine("-- After command execution-- ");
}
}
To implement IMiddleware, the class needs to define an HandleAsync method. This is the method that gets by called Typin when the pipeline is executed.
It is also possible to using dependency injection in IMiddleware implementation class, e.g.,
public sealed class ExampleMiddleware : IMiddleware
{
private readonly IConsole _console;
public ExampleMiddleware (IConsole console)
{
_console = console;
}
public async Task HandleAsync(ICliContext context, CommandPipelineHandlerDelegate next, CancellationToken cancellationToken)
{
context.Console.Output.WriteLine("-- Before command execution --");
await next();
_console.Output.WriteLine("-- After command execution-- ");
}
}
Getting started
Advanced features
- Reporting errors
- Exception handling
- Metadata and startup message
- Graceful cancellation
- Dependency injection
- Middleware pipeline
- Environment variables
Utilities
Tests
Misc