Ejemplo n.º 1
0
 /// <summary>
 /// Overrides the whole execution flow.
 /// </summary>
 /// <param name="nextWorkflow"></param>
 public void Override(WorkflowBase <TContext> nextWorkflow)
 {
     if (nextWorkflow is null)
     {
         throw new ArgumentNullException(nameof(nextWorkflow));
     }
     ExecutionChain.Override(nextWorkflow);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// This would clear all workflows which are registered until now in the ExecutionChain and add the one you pass as the only one present.
 /// BEWARE! This does not override the current execution of the overflow. Only those which are registered in the ExecutionChain which are
 /// going to be executed after the workflow you are overriding. If you want to allow the possibility to override the whole workflow from
 /// somewhere else, you should nest him inside <see cref="ActionWorkflow{TContext}"/> first.
 /// </summary>
 /// <param name="next"></param>
 public void Override(WorkflowBase <TContext> next)
 {
     executionQueue.Clear();
     Append(next);
 }
Ejemplo n.º 3
0
 public void Append(WorkflowBase <TContext> next)
 {
     executionQueue.Enqueue(next);
 }