MessageStatistics.java 243 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 package com.dianping.cat.message.spi; public interface MessageStatistics { public long getBytes(); public long getOverflowed(); public long getProduced(); public void onBytes(int size); public void onOverflowed(MessageTree tree); }