001 package com.hammurapi.eventbus.monitoring;
002
003 /**
004 * Statistics collector.
005 * @author Pavel Vlasov
006 *
007 */
008 public interface StatsCollector {
009
010 /**
011 * Adds root statistics node.
012 * @param root
013 */
014 void add(Stats root);
015
016 /**
017 * Removes root statistics node.
018 * @param root
019 */
020 void remove(Stats root);
021 }