DocSpace-buildtools/common/ASC.Core.Common/Notify/Sinks/ISink.cs

9 lines
200 B
C#
Raw Normal View History

2022-02-15 11:52:43 +00:00
namespace ASC.Notify.Sinks;
public interface ISink
2019-05-15 14:56:09 +00:00
{
2022-02-15 11:52:43 +00:00
ISink NextSink { get; set; }
SendResponse ProcessMessage(INoticeMessage message);
void ProcessMessageAsync(INoticeMessage message);
}