Interface ICommandLineWrapper
public interface ICommandLineWrapper
Methods
Execute(string, PiaCtlOptions, CancellationToken)
Invokes piactl with the specified command. Conforms to ExecuteDelegate
Task<PiaResults> Execute(string command, PiaCtlOptions options, CancellationToken ct = default)
Parameters
command
stringThe CLI command to be passed to piactl.
options
PiaCtlOptionsThe options to configure PiaCtl.
ct
CancellationTokenA cancellation token.
Returns
- Task<PiaResults>
A
Task<PiaResults>
containing standard output and standard error results.
ExecuteTimed(uint, string, PiaCtlOptions)
Invokes piactl with the specified command and keeps the it running for a given time. Unless the command errors, this method will return success when the timeout expires. Conforms to ExecuteTimedDelegate
Task<PiaResults> ExecuteTimed(uint timeout, string command, PiaCtlOptions options)
Parameters
timeout
uintThe time, in seconds, after which to cancel the task.
command
stringThe CLI command to be passed to piactl.
options
PiaCtlOptionsThe options to configure PiaCtl.
Returns
- Task<PiaResults>
A
Task<PiaResults>
containing standard output and standard error results.