Пример #1
0
 public abstract void RaiseEvent(OrchestrationContext context, string name, string input);
Пример #2
0
 public RetryInterceptor(OrchestrationContext context, RetryOptions retryOptions, Func <Task <T> > retryCall)
 {
     this.context      = context;
     this.retryOptions = retryOptions;
     this.retryCall    = retryCall;
 }
Пример #3
0
 public abstract Task <string> Execute(OrchestrationContext context, string input);