Пример #1
0
 public Boolean isExecutionProcessed(String executionId)
 {
     if (ProcessedExecution.ContainsKey(executionId))
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
Пример #2
0
 public void markExeProcessed(String executionId)
 {
     ProcessedExecution.AddOrUpdate(executionId, executionId, (key, oldValue) => oldValue);
 }