using System; namespace Blue { /// /// 异步查询的接口 /// public interface IQueryAsync : ICanGetService, ICanGetModel, ICanGetUtility, ICanSubscribeEvent { /// /// 异步查询方法 /// void DoQueryAsync(Action onQueryComleted); } }