Publish event improvements (#4150)

This commit is contained in:
MariusVuscanNx 2023-06-22 12:50:02 +03:00 committed by GitHub
parent ac57c07e7c
commit 545df0ea53
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,10 +1,10 @@
using System.Runtime.CompilerServices;
using System.Text.Json.Serialization;
using Elsa.Extensions;
using Elsa.Workflows.Core.Attributes;
using Elsa.Workflows.Core.Models;
using Elsa.Workflows.Runtime.Contracts;
using JetBrains.Annotations;
using System.Runtime.CompilerServices;
using System.Text.Json.Serialization;
namespace Elsa.Workflows.Runtime.Activities;
@ -20,7 +20,7 @@ public class PublishEvent : Activity
public PublishEvent()
{
}
/// <inheritdoc />
public PublishEvent([CallerFilePath] string? source = default, [CallerLineNumber] int? line = default) : base(source, line)
{
@ -31,20 +31,28 @@ public class PublishEvent : Activity
/// </summary>
[Input(Description = "The name of the event to publish.")]
public Input<string> EventName { get; set; } = default!;
/// <summary>
/// The correlation ID to scope the event to.
/// </summary>
[Input(Description = "The correlation ID to scope the event to.")]
public Input<string?> CorrelationId { get; set; } = default!;
/// <summary>
/// The input to send as the event body.
/// </summary>
[Input(Description = "The input to send as the event body.")]
public Input<IDictionary<string, object>?> Input { get; set; } = default!;
/// <inheritdoc />
protected override async ValueTask ExecuteAsync(ActivityExecutionContext context)
{
var eventName = EventName.Get(context);
var correlationId = CorrelationId.GetOrDefault(context);
var input = Input.GetOrDefault(context);
var publisher = context.GetRequiredService<IEventPublisher>();
await publisher.DispatchAsync(eventName, correlationId, cancellationToken: context.CancellationToken);
await publisher.DispatchAsync(eventName, correlationId, input: input, cancellationToken: context.CancellationToken);
await context.CompleteActivityAsync();
}
}