Esempio n. 1
0
 /// <summary>
 /// Call made by the job execution when a job method has been invoked.
 /// </summary>
 /// <param name="outcome">The outcome of invoking the job method.</param>
 public Task MethodResult(MethodOutcome outcome) => SendPriorityAsync(nameof(MethodResult), outcome);
Esempio n. 2
0
        private Task MethodCompleted(MethodOutcome method)
        {
            Methods.Add(method.Method, method);

            return(Task.CompletedTask);
        }