using System; using System.Collections.Generic; using System.Threading.Tasks; namespace Pole.Core.EventBus { public interface IObserverUnit : IGrainID { List> GetEventHandlers(); List, Task>> GetBatchEventHandlers(); } }