BTool.ThreadMgr.ThreadMgr C# (CSharp) Method

ThreadMgr() public method

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