namespace XGame.Framework.Asyncs { /// <summary> /// 可被取消的异步操作 /// </summary> public interface IAsyncCancelable { void CancelAsync(); } }