using System; using System.Collections.Generic; using System.Threading.Tasks; namespace Pole.EventBus { public interface IObserverUnit : IGrainID { Func GetEventHandler(); Func, Task> GetBatchEventHandler(); } }