Interface ITerminalProcessor
An abstraction for processing the TerminalInputOutput individually or in batches, with optional asynchronous handling of responses in the background.
public interface ITerminalProcessor : IAsyncDisposable
- Inherited Members
Remarks
The ITerminalProcessor supports processing inputs, executing commands with responses, and managing streaming workflows efficiently in background tasks.
Properties
IsBackground
Gets a value indicating whether the processor is running in the background.
bool IsBackground { get; }
Property Value
IsProcessing
Gets a value indicating whether the processor is actively handling requests.
bool IsProcessing { get; }
Property Value
UnprocessedIOs
Retrieves a snapshot of inputs that are pending processing.
IReadOnlyCollection<TerminalInputOutput> UnprocessedIOs { get; }
Property Value
Remarks
The returned collection represents the state of unprocessed inputs at the time of retrieval. The actual state may change by the time the caller processes it.
Methods
AddAsync(TerminalInputOutput)
Asynchronously adds a TerminalInputOutput for processing.
Task AddAsync(TerminalInputOutput terminalIO)
Parameters
terminalIO
TerminalInputOutputThe input to add.
Returns
- Task
A task representing the asynchronous operation.
ExecuteAsync(TerminalInputOutput)
Asynchronously executes the input and populates the output.
Task ExecuteAsync(TerminalInputOutput terminalIO)
Parameters
terminalIO
TerminalInputOutputThe input to execute.
Returns
Remarks
The ExecuteAsync(TerminalInputOutput) method processes the input immediately and returns the output. For background processing, use AddAsync(TerminalInputOutput).
StartProcessing(TerminalRouterContext, bool, Func<TerminalInputOutput, Task>?)
Starts processing terminal inputs with the specified context and configuration.
void StartProcessing(TerminalRouterContext terminalRouterContext, bool background, Func<TerminalInputOutput, Task>? responseHandler = null)
Parameters
terminalRouterContext
TerminalRouterContextThe context for the terminal router.
background
boolIf
true
, the processor operates in the background, handling multiple requests asynchronously. Iffalse
, it processes individual requests and sends responses asynchronously.responseHandler
Func<TerminalInputOutput, Task>An optional handler for processing responses.
StopProcessingAsync(int)
Attempts to stop background processing within a specified timeout period.
Task<bool> StopProcessingAsync(int timeout)
Parameters
timeout
intThe timeout duration in milliseconds.
Returns
- Task<bool>
A task representing the asynchronous operation, returning
true
if processing stopped within the timeout; otherwise,false
.
StreamAsync(byte[], int, string, string?)
Asynchronously streams a continuous flow of TerminalInputOutput as a byte array.
Task StreamAsync(byte[] bytes, int bytesLength, string senderId, string? senderEndpoint)
Parameters
bytes
byte[]The data to stream.
bytesLength
intThe length of the data to process. Use the total length to process all bytes.
senderId
stringThe identifier of the sender.
senderEndpoint
stringAn optional endpoint of the sender.
Returns
Remarks
The StreamAsync(byte[], int, string, string?) method is optimized for handling continuous
streams of data. The bytesLength
parameter specifies the portion of the input to process,
avoiding unnecessary duplication of data.
WaitUntilCanceledAsync(CancellationToken)
Initiates a task that delays indefinitely until cancellation is requested.
Task WaitUntilCanceledAsync(CancellationToken cancellationToken)
Parameters
cancellationToken
CancellationTokenThe cancellation token to trigger termination.