Example #1
0
 public static void OnEncapedTagEpcOver(EncapedLogBaseEpcOver msg)
 {
     if (null != msg)
     {
         LogUtils.Debug("Epc log over.");
     }
 }
Example #2
0
 /// <summary>
 /// EncapedLogBaseEpcOver 回调消息
 /// </summary>
 public void OnEncapedTagEpcOver(EncapedLogBaseEpcOver msg)
 {
     if (null != msg)
     {
         LogUtils.Debug("Epc log over.");
         //发送停止状态;并停止当前连接
         //SendSynBaseStopMsg(currentClientConn);
         currentClientConn.Close();
         manualResetEvent.Set();
     }
 }