Exemplo n.º 1
0
 public abstract void RaiseEvent(OrchestrationContext context, string name, string input);
Exemplo n.º 2
0
 public RetryInterceptor(OrchestrationContext context, RetryOptions retryOptions, Func <Task <T> > retryCall)
 {
     this.context      = context;
     this.retryOptions = retryOptions;
     this.retryCall    = retryCall;
 }
Exemplo n.º 3
0
 public abstract Task <string> Execute(OrchestrationContext context, string input);