Replaced IWorkflowDispatcher in TaskReporter with IWorkflowInbox to streamline task reporting. This fixes race conditions when the workflow is attempted to be resumed before it committed its bookmarks.
7 lines
187 B
C#
7 lines
187 B
C#
namespace Elsa.Samples.AspNet.Onboarding.Web.Models;
|
|
|
|
public record RunTaskWebhook(
|
|
string WorkflowInstanceId,
|
|
string TaskId,
|
|
string TaskName,
|
|
TaskPayload? TaskPayload); |