DocSpace-buildtools/common/ASC.Core.Common/Notify/Engine/INotifyEngine.cs

9 lines
299 B
C#

namespace ASC.Notify.Engine;
interface INotifyEngine
{
event Action<NotifyEngine, NotifyRequest, IServiceScope> AfterTransferRequest;
event Action<NotifyEngine, NotifyRequest, IServiceScope> BeforeTransferRequest;
void QueueRequest(NotifyRequest request, IServiceScope serviceScope);
}