01: /* Copyright 2005 The JA-SIG Collaborative. All rights reserved.
02: * See license distributed with this file and
03: * available online at http://www.uportal.org/license.html
04: */
05:
06: package org.jasig.portal.utils;
07:
08: /**
09: * @author George Lindholm <a href="mailto:George.Lindholm@ubc.ca">George.Lindholm@ubc.ca</a>
10: * @version $Revision: 36732 $
11: * @since uPortal 2.5
12: */
13:
14: public interface IMovingAverageSample {
15: public long getAverage();
16:
17: public long getHighMax();
18:
19: public long getLastSample();
20:
21: public long getMax();
22:
23: public long getMin();
24:
25: public long getTotalSamples();
26:
27: }
|