Package com.taobao.top.analysis.node.event

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


   
    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

Related Classes of com.taobao.top.analysis.node.event.SendMonitorInfoResponseEvent

Copyright © 2018 www.massapicom. 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.