public DurableFunctionCheckpoint(string name, DurableFunction durableFunction)
 {
     this._name       = name;
     this._function   = durableFunction;
     this.IsCompleted = false;
 }
Esempio n. 2
0
        public async Task StartAsync(string methodName = "Dialog")
        {
            _durableFunction = DurableFunction.Create(this.GetType(), methodName, this);

            await _durableFunction.StartAsync();
        }