BTool.ThreadMgr.ThreadMgr C# (CSharp) 메소드

ThreadMgr() 공개 메소드

public ThreadMgr ( DeviceForm deviceForm ) : System.Threading
deviceForm DeviceForm
리턴 System.Threading
        public ThreadMgr(DeviceForm deviceForm)
        {
            rspDataIn = new RspDataInThread(deviceForm);
            txDataOut = new TxDataOutThread();
            rxDataIn = new RxDataInThread(deviceForm);
            rxTxMgr = new RxTxMgrThread();
        }