Example #1
0
 public void 注销通道(数据通道 channel)
 {
     this.channel = channel;
     允许操作         = false;
     System.Threading.Thread.Sleep(100);
     System.Threading.Thread thead = new System.Threading.Thread(this.注销通道操作);
     thead.IsBackground = true;
     thead.Start();
 }
Example #2
0
 public void 注册通道(数据通道 channel)
 {
     this.channel = channel;
     允许操作 = false;
     System.Threading.Thread.Sleep(100);
     System.Threading.Thread thead = new System.Threading.Thread(this.注册通道操作);
     thead.IsBackground = true;
     thead.Start();
 }