Enum CommandExecutionMode
Defines how command will be executed according to the number of incoming alerts.
Namespace: Nevatech.Vsb.Repository.Alerts
Assembly: Nevatech.Vsb.Repository.dll
Syntax
public enum CommandExecutionMode
Fields
Name | Description |
---|---|
ExecuteOnBatchOfAlerts | The command/process runs once per handler execution. The handler uses details of the first alert to construct command arguments and combines details of all alerts to provide primary input. |
ExecuteOnEachAlert | The command/process is executed per each alert. Details of each alert are used to create arguments and primary input for each execution. |
ExecuteOnFirstAlertOnly | The command/process runs once per handler execution. The handler uses details of the first alert to construct command arguments and primary input. |