Examples of SendMonitorInfoResponseEvent


Examples of com.taobao.top.analysis.node.event.SendMonitorInfoResponseEvent

        }
      });
     
      // 在SlaveConnectorHandler. messageReceived中会countDown
      sendSlaveMonitorInfoEvent.getResultReadyFlag().await(config.getMaxClientEventWaitTime(), TimeUnit.SECONDS);
      SendMonitorInfoResponseEvent responseEvent = (SendMonitorInfoResponseEvent)sendSlaveMonitorInfoEvent.getResponse();
      info = responseEvent.getMasterMonitorInfo();

    } catch (AnalysisException e) {
      logger.error("Exception:", e);
    } catch (InterruptedException e) {
      logger.error("Exception:", e);
View Full Code Here

Examples of com.taobao.top.analysis.node.event.SendMonitorInfoResponseEvent

   
    masterConnector.echoSendJobTaskResults(event);
  }
 
  public void echoSendMonitorInfo(String sequence, MasterMonitorInfo info, Object channel) {
    SendMonitorInfoResponseEvent event = new SendMonitorInfoResponseEvent(sequence);
    event.setMasterMonitorInfo(info);
    event.setChannel(channel);
    masterConnector.echoSendMonitorInfo(event);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.