namespace SK.Framework { public interface IPoolable { /// /// 是否已回收 /// bool IsRecycled { get; set; } /// /// 回收事件 /// void OnRecycled(); } }