Lean
$LEAN_TAG$
|
Represents a command queue for the algorithm. This is an entry point for external messages to act upon the running algorithm instance. More...
Public Member Functions | |
void | Initialize (AlgorithmNodePacket job, IAlgorithm algorithm) |
Initializes this command queue for the specified job More... | |
IEnumerable< CommandResultPacket > | ProcessCommands () |
Process any commands in the queue More... | |
Represents a command queue for the algorithm. This is an entry point for external messages to act upon the running algorithm instance.
Definition at line 27 of file ICommandHandler.cs.
void QuantConnect.Commands.ICommandHandler.Initialize | ( | AlgorithmNodePacket | job, |
IAlgorithm | algorithm | ||
) |
Initializes this command queue for the specified job
job | The job that defines what queue to bind to |
algorithm | The algorithm instance |
Implemented in QuantConnect.Commands.BaseCommandHandler.
IEnumerable<CommandResultPacket> QuantConnect.Commands.ICommandHandler.ProcessCommands | ( | ) |
Process any commands in the queue
Implemented in QuantConnect.Commands.BaseCommandHandler.