Coverage Report - net.admin4j.timer.TaskTimer
 
Classes in this File Line Coverage Branch Coverage Complexity
TaskTimer
N/A
N/A
1
 
 1  
 /*
 2  
  * This software is licensed under the Apache License, Version 2.0
 3  
  * (the "License") agreement; you may not use this file except in compliance with
 4  
  * the License.  You may obtain a copy of the License at
 5  
  * 
 6  
  *      http://www.apache.org/licenses/LICENSE-2.0
 7  
  * 
 8  
  * Unless required by applicable law or agreed to in writing, software
 9  
  * distributed under the License is distributed on an "AS IS" BASIS,
 10  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 11  
  * See the License for the specific language governing permissions and
 12  
  * limitations under the License.
 13  
  */
 14  
 package net.admin4j.timer;
 15  
 
 16  
 import java.io.Serializable;
 17  
 import java.util.Collection;
 18  
 
 19  
 
 20  
 /**
 21  
  * Used to time tasks so that performance measurements can be reported.
 22  
  * @author D. Ashmore
 23  
  * @since 1.0
 24  
  */
 25  
 public interface TaskTimer extends Serializable {
 26  
     
 27  
     /**
 28  
      * Stops the timer.  This will except if the timer hasn't been started yet.
 29  
      */
 30  
     public void stop();
 31  
     
 32  
     /**
 33  
      * Starts the timer.
 34  
      */
 35  
     public void start();
 36  
     
 37  
     /**
 38  
      * Provides a label for the timer.
 39  
      * @return Label Meaningful label describing the activity timed.
 40  
      */
 41  
     public String getLabel();
 42  
     
 43  
     /**
 44  
      * Provides data measures from all timers that have complete timings.
 45  
      * @return
 46  
      */
 47  
     public Collection<DataMeasure> getDataMeasures();
 48  
 }