001 /*
002 @license.text@
003 */
004 package biz.hammurapi.metrics;
005
006 /**
007 * Slice consumers which need to perform housekeeping on regular basis shall implement this method.
008 * @author Pavel Vlasov
009 * @revision $Revision$
010 */
011 public interface HousekeepingSliceConsumer extends SliceConsumer {
012 void onTick(long time);
013 }