getTriggerExecutor method

TriggerExecutor<TriggerConfiguration>? getTriggerExecutor(
  1. String studyDeploymentId,
  2. int triggerId
)

Get a TriggerExecutor based on the studyDeploymentId and triggerId. Returns null if not found.

Implementation

TriggerExecutor? getTriggerExecutor(
  String studyDeploymentId,
  int triggerId,
) => _triggerExecutors[studyDeploymentId]?[triggerId];