Class 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.
public class TerminalGrpcRouter : ITerminalRouter<TerminalGrpcRouterContext>
- Inheritance
-
TerminalGrpcRouter
- Implements
- Inherited Members
Constructors
TerminalGrpcRouter(ITerminalProcessor, IOptions<TerminalOptions>, ILogger<TerminalGrpcRouter>)
Initializes a new instance of the TerminalGrpcRouter class.
public TerminalGrpcRouter(ITerminalProcessor terminalProcessor, IOptions<TerminalOptions> options, ILogger<TerminalGrpcRouter> logger)
Parameters
terminalProcessor
ITerminalProcessorThe terminal router queue.
options
IOptions<TerminalOptions>The options configuration for the terminal router.
logger
ILogger<TerminalGrpcRouter>The logger instance for logging router events and errors.
Properties
IsRunning
Gets a value indicating whether the TerminalGrpcRouter is running.
public bool IsRunning { get; protected set; }
Property Value
Name
The terminal router name.
public string Name { get; }
Property Value
Methods
RunAsync(TerminalGrpcRouterContext)
Runs the gRPC server asynchronously and begins handling client requests indefinitely. The server will continue running until a cancellation is requested via the context.
public Task RunAsync(TerminalGrpcRouterContext context)
Parameters
context
TerminalGrpcRouterContextThe terminal context containing configuration and cancellation token.
Returns
- Task
A task that represents the asynchronous operation of running the server.
Exceptions
- TerminalException
Thrown when the start mode is not configured for gRPC.