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

9 lines
200 B
C#

namespace ASC.Notify.Sinks;
public interface ISink
{
ISink NextSink { get; set; }
SendResponse ProcessMessage(INoticeMessage message);
void ProcessMessageAsync(INoticeMessage message);
}