DocSpace-buildtools/common/ASC.Core.Common/Notify/INotifyRegistry.cs

10 lines
301 B
C#

namespace ASC.Notify;
public interface INotifyRegistry
{
INotifyClient RegisterClient(INotifySource source, IServiceScope serviceScope);
ISenderChannel GetSender(string senderName);
void RegisterSender(string senderName, ISink senderSink);
void UnregisterSender(string senderName);
}