Class CommandLineMaintenanceInterfaceHost
Provides AMI in the form of the text commands with the syntax identical to OS shell commands.
Inheritance
CommandLineMaintenanceInterfaceHost
Inherited Members
Namespace: DotNext .Maintenance.CommandLine
Assembly: DotNext.MaintenanceServices.dll
Syntax
public sealed class CommandLineMaintenanceInterfaceHost : ApplicationMaintenanceInterfaceHost, IHostedService, IDisposable
Examples
echo "gc collect 2" | nc -U /path/to/endpoint.sock
Constructors
| Edit this page View SourceCommandLineMaintenanceInterfaceHost(UnixDomainSocketEndPoint, IEnumerable<ApplicationMaintenanceCommand>, IAuthenticationHandler?, AuthorizationCallback?, ILoggerFactory?)
Initializes a new host.
Declaration
public CommandLineMaintenanceInterfaceHost(UnixDomainSocketEndPoint endPoint, IEnumerable<ApplicationMaintenanceCommand> commands, IAuthenticationHandler? authentication = null, AuthorizationCallback? authorization = null, ILoggerFactory? loggerFactory = null)
Parameters
Type | Name | Description |
---|---|---|
Unix |
endPoint | Unix Domain Socket address used as a interaction point. |
IEnumerable<Application |
commands | A set of commands to be available for execution. |
IAuthentication |
authentication | Optional authentication handler. |
Authorization |
authorization | A set of global authorization rules to be applied to all commands. |
ILogger |
loggerFactory | Optional logger factory. |
Methods
| Edit this page View SourceExecuteCommandAsync(IMaintenanceSession, ReadOnlyMemory<char>, CancellationToken)
Executes command asynchronously.
Declaration
protected override ValueTask ExecuteCommandAsync(IMaintenanceSession session, ReadOnlyMemory<char> command, CancellationToken token)
Parameters
Type | Name | Description |
---|---|---|
IMaintenance |
session | Command session. |
Read |
command | The command to execute. |
Cancellation |
token | The token that is associated with the host lifetime. |
Returns
Type | Description |
---|---|
Value |
A task representing asynchronous execution of the command. |