Table of Contents

Namespace OneImlx.Terminal.Runtime

Classes

Terminal

Terminals, also known as command lines, consoles, or CLI applications, allow organizations and users to accomplish and automate tasks on a computer without using a graphical user interface. If a CLI terminal supports user interaction, the UX is the terminal.

TerminalConsoleExceptionHandler

The default ITerminalExceptionHandler to handle an Exception and log the error message to ITerminalConsole.

TerminalConsoleHelpProvider

The default ITerminalHelpProvider that logs the command help using ITerminalConsole.

TerminalConsoleRouter

The default ITerminalRouter<TContext> for console based terminals.

TerminalConsoleRouterContext

The TerminalRouterContext for TerminalConsoleRouter.

TerminalCustomRouter

The default ITerminalRouter<TContext> for custom routing.

TerminalCustomRouterContext

The TerminalRouterContext for TerminalCustomRouter.

TerminalExceptionHandlerContext

The ITerminalExceptionHandler context.

TerminalGrpcRouter

Represents the gRPC router responsible for managing gRPC communication in the terminal. This router handles incoming gRPC commands and routes them to the appropriate command runners.

TerminalGrpcRouterContext

Represents the context for configuring and managing the gRPC router in the terminal.

TerminalHelpProviderContext

The ITerminalHelpProvider context.

TerminalHttpRouter

Represents the HTTP router responsible for managing HTTP communication in the terminal. This router handles incoming HTTP commands and routes them to the appropriate command runners.

TerminalHttpRouterContext

Represents the context for the terminal router when running in HTTP mode.

TerminalLoggerExceptionHandler

The default ITerminalExceptionHandler to handle an Exception and log the error message to ILogger.

TerminalLoggerHelpProvider

The default ITerminalHelpProvider that logs the command help using ILogger.

TerminalNoConsole

A no-operation console implementation for the ITerminalConsole interface. This implementation does not perform any actual console input/output operations.

TerminalParsedRequest

The raw representation of a parsed TerminalRequest.

TerminalProcessor

The default implementation of ITerminalProcessor for processing inputs in a terminal environment.

TerminalRequestQueueParser

The default ITerminalRequestParser that uses a queue to parse the terminal request.

TerminalRouterContext

The ITerminalRouter<TContext> context.

TerminalSystemConsole

The default implementation of ITerminalConsole that uses the system Console.

TerminalTcpRouter

The default ITerminalRouter<TContext> for TCP client-server communication.

TerminalTcpRouterContext

The TerminalTcpRouter connection context.

TerminalTextHandler

The default ITerminalTextHandler.

TerminalUdpRouter

The default ITerminalRouter<TContext> for UDP server communication.

TerminalUdpRouterContext

The TerminalUdpRouter connection context.

Interfaces

ITerminalConsole

An abstraction of a console for terminal framework.

ITerminalExceptionHandler

An abstraction to handle Exception.

ITerminalHelpProvider

An abstraction to provide help for commands.

ITerminalProcessor

An abstraction for processing the TerminalInputOutput individually or in batches, with optional asynchronous handling of responses in the background.

ITerminalRequestParser

An abstraction to parse a TerminalRequest.

ITerminalRouter<TContext>

An abstraction of a context aware terminal router.

ITerminalTextHandler

An abstraction of a terminal text handler.

Enums

TerminalStartMode

The terminal start mode.