using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IvfTl.Control.Entity.GlobalEnums { /// /// 当前线程来源类型 /// public enum CommandSource { /// /// CCD抓图线程 /// ccdThread, /// /// 温压检测线程 /// paramThread, /// /// 来自UI线程用户触发 /// uiThread, /// /// 来自气体交换线程 /// airSwapThread, /// /// 来自任务调度线程 /// taskThread, /// /// 来自缓冲瓶气压检测线程 /// BufferBottleThread, /// /// 获取模块线程 /// GetModuleThread, /// /// 测试线程 /// DebugThread, /// /// 自动对焦线程 /// AutoFocusThread, } }