using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.IDataDockingQueue { /// /// 数据对接 /// public interface IHandleHelper { /// /// 推入 /// bool Push(string flag, T t); /// /// 接收 /// void Receive(string flag, Func func); /// /// 关闭 /// void Close(); } }