elsa-core/src/modules/Elsa.Http/Handlers/UpdateRouteTable.cs

38 lines
1.4 KiB
C#
Raw Normal View History

using Elsa.Extensions;
using Elsa.Http.Contracts;
using Elsa.Mediator.Contracts;
using Elsa.Workflows.Runtime.Notifications;
2022-04-27 20:32:40 +00:00
namespace Elsa.Http.Handlers;
2023-04-13 18:35:55 +00:00
/// <summary>
/// A handler that updates the route table when workflow triggers and bookmarks are indexed.
2023-04-13 18:35:55 +00:00
/// </summary>
public class UpdateRouteTable :
INotificationHandler<WorkflowTriggersIndexed>,
INotificationHandler<WorkflowBookmarksIndexed>
2022-04-27 20:32:40 +00:00
{
private readonly IRouteTable _routeTable;
2023-04-13 18:35:55 +00:00
/// <summary>
/// Initializes a new instance of the <see cref="UpdateRouteTable"/> class.
/// </summary>
public UpdateRouteTable(IRouteTable routeTable) => _routeTable = routeTable;
2022-04-27 20:32:40 +00:00
2023-04-13 18:35:55 +00:00
/// <inheritdoc />
public Task HandleAsync(WorkflowTriggersIndexed notification, CancellationToken cancellationToken)
{
_routeTable.RemoveRoutes(notification.IndexedWorkflowTriggers.RemovedTriggers);
_routeTable.AddRoutes(notification.IndexedWorkflowTriggers.AddedTriggers);
_routeTable.AddRoutes(notification.IndexedWorkflowTriggers.UnchangedTriggers);
return Task.CompletedTask;
}
2022-04-27 20:32:40 +00:00
2023-04-13 18:35:55 +00:00
/// <inheritdoc />
public Task HandleAsync(WorkflowBookmarksIndexed notification, CancellationToken cancellationToken)
{
_routeTable.RemoveRoutes(notification.IndexedWorkflowBookmarks.RemovedBookmarks);
_routeTable.AddRoutes(notification.IndexedWorkflowBookmarks.AddedBookmarks);
return Task.CompletedTask;
2022-04-27 20:32:40 +00:00
}
}