using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.IRunQueue { /// /// 处理辅助类 /// public interface IHandleHelper { /// /// 推入 /// bool Push(string flag,T t); /// /// 接收 /// void Receive(string flag, Func func); /// /// 关闭 /// void Close(); } }