using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace Pole.ReliableMessage.Abstraction { public interface IReliableEventHandler : IReliableEventHandler where TEvent : class { Task Handle(IReliableEventHandlerContext context); } public interface IReliableEventHandler { } }