mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.2 KiB
32 lines
1.2 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschränkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
using Squidex.Domain.Apps.Core.Rules;
|
|
using Squidex.Domain.Apps.Events;
|
|
using Squidex.Infrastructure.EventSourcing;
|
|
|
|
namespace Squidex.Domain.Apps.Core.HandleRules
|
|
{
|
|
public abstract class RuleActionHandler<T> : IRuleActionHandler where T : RuleAction
|
|
{
|
|
Type IRuleActionHandler.ActionType
|
|
{
|
|
get { return typeof(T); }
|
|
}
|
|
|
|
(string Description, RuleJobData Data) IRuleActionHandler.CreateJob(Envelope<AppEvent> @event, string eventName, RuleAction action)
|
|
{
|
|
return CreateJob(@event, eventName, (T)action);
|
|
}
|
|
|
|
protected abstract (string Description, RuleJobData Data) CreateJob(Envelope<AppEvent> @event, string eventName, T action);
|
|
|
|
public abstract Task<(string Dump, Exception Exception)> ExecuteJobAsync(RuleJobData job);
|
|
}
|
|
}
|
|
|