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