Package com.dianping.cat.consumer.transaction

Examples of com.dianping.cat.consumer.transaction.TransactionDelegate


    m_timestamp = currentTimeMillis - currentTimeMillis % (3600 * 1000);

    try {
      TransactionAnalyzer transactionAnalyzer = (TransactionAnalyzer) lookup(MessageAnalyzer.class,
            TransactionAnalyzer.ID);
      TransactionDelegate transactionDelegate = (TransactionDelegate) lookup(ReportDelegate.class, "transaction");
      MockTransactionReportManager transactionManager = (MockTransactionReportManager) lookup(ReportManager.class,
            "transaction");

      String xml = Files.forIO().readFrom(TransactionAnalyzerTest.class.getResourceAsStream("transaction_real.xml"),
            "utf-8");
      TransactionReport transactionReport = transactionDelegate.parseXml(xml);
      rebuildTransactionReport(transactionReport);
      transactionManager.setReport(transactionReport);

      ProblemAnalyzer problemAnalyzer = (ProblemAnalyzer) lookup(MessageAnalyzer.class, ProblemAnalyzer.ID);
      ProblemDelegate problemDelegate = (ProblemDelegate) lookup(ReportDelegate.class, "problem");
View Full Code Here

TOP

Related Classes of com.dianping.cat.consumer.transaction.TransactionDelegate

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.