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

9 lines
299 B
C#
Raw Normal View History

2022-02-15 11:52:43 +00:00
namespace ASC.Notify.Engine;
interface INotifyEngine
2019-05-15 14:56:09 +00:00
{
2022-02-15 11:52:43 +00:00
event Action<NotifyEngine, NotifyRequest, IServiceScope> AfterTransferRequest;
event Action<NotifyEngine, NotifyRequest, IServiceScope> BeforeTransferRequest;
2022-02-21 09:17:17 +00:00
void QueueRequest(NotifyRequest request, IServiceScope serviceScope);
2022-02-15 11:52:43 +00:00
}