001    package com.hammurapi.eventbus.monitoring;
002    
003    /**
004     * Base interface for statistics collection.
005     * @author Pavel Vlasov.
006     *
007     */
008    public interface Stats {
009            
010            String getName();
011            
012            void reset();
013    
014            Iterable<Stats> children();
015    }