소스 검색

충돌 병합

ys-hwang 6 년 전
부모
커밋
c9d381c9d1
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      Dev/OHV/VehicleControlSystem/ControlLayer/MQ/ZmqManager.cs

+ 1 - 2
Dev/OHV/VehicleControlSystem/ControlLayer/MQ/ZmqManager.cs

@@ -80,13 +80,12 @@ namespace VehicleControlSystem.ControlLayer.MQ
             sub.Connect( "tcp://127.0.0.1:5566" );
             sub.Subscribe( "" ); //All
             sub.ReceiveReady += Sub_ReceiveReady;
-
+            
             req = new RequestSocket();
             this.monitor = new NetMQMonitor( req, "inproc://rep.inproc", SocketEvents.Disconnected | SocketEvents.Connected );
             this.monitor.Connected += ( s, a ) => { this.IsReqConnected = true; };
             this.monitor.Disconnected += ( s, a ) => { this.IsReqConnected = false; };
             this.monitor.StartAsync();
-
             req.Connect( "tcp://127.0.0.1:5567" );
 
             this.poller = new NetMQPoller { this.sub, this.rep };