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