package com.gmail.woodyc40.common.timing; /** * Specifies to the Timing service how to record timed entries * * @author Pierre C */ public interface TimingMethod { /** * Called when the service receives a request to put the time * * @param time the time recorded */ void submit(long time); }