Package com.dianping.cat.message

Examples of com.dianping.cat.message.TaggedTransaction


    }
  }

  @Override
  public void bind(String tag, String title) {
    TaggedTransaction t = m_taggedTransactions.get(tag);

    if (t != null) {
      MessageTree tree = getThreadLocalMessageTree();

      if (tree != null) {
        t.start();
        t.bind(tag, tree.getMessageId(), title);
      }
    }
  }
View Full Code Here


    if (ctx != null) {
      ctx.start(transaction, forked);

      if (transaction instanceof TaggedTransaction) {
        TaggedTransaction tt = (TaggedTransaction) transaction;

        m_taggedTransactions.put(tt.getTag(), tt);
      }
    } else if (m_firstMessage) {
      m_firstMessage = false;
      m_logger.warn("CAT client is not enabled because it's not initialized yet");
    }
View Full Code Here

TOP

Related Classes of com.dianping.cat.message.TaggedTransaction

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.