using Pole.EventBus.EventStorage; using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace Pole.EventBus { public interface IEventBuffer { Task AddAndRun(EventEntity eventEntity); } }