Package com.illumon.iris.binarystore
Class ExpirationManager.StaticExpiration<T>
java.lang.Object
com.illumon.iris.binarystore.ExpirationManager.StaticExpiration<T>
- All Implemented Interfaces:
ExpirationManager<T>
- Enclosing interface:
- ExpirationManager<T>
public static class ExpirationManager.StaticExpiration<T> extends Object implements ExpirationManager<T>
Static value - does not expire.
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.illumon.iris.binarystore.ExpirationManager
ExpirationManager.ArbitraryExpiration, ExpirationManager.BaseExpiration<T>, ExpirationManager.DailyExpiration, ExpirationManager.DailyHourlyExpiration, ExpirationManager.HourlyExpiration, ExpirationManager.StaticExpiration<T>
-
Constructor Summary
Constructors Constructor Description StaticExpiration(T value)
-
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.illumon.iris.binarystore.ExpirationManager
initialize, initialize
-
Constructor Details
-
Method Details
-
get
Description copied from interface:ExpirationManager
Get the value of this ExpirationManager for the current time. Current time should be obtained from the appropriate time source, not necessarily System.currentTimeMillis.e.g ClockFactory.get().currentTimeMillis()
- Specified by:
get
in interfaceExpirationManager<T>
- Returns:
- the value corresponding to timesource.currentTimeMillis()
-
get
Description copied from interface:ExpirationManager
Get the value of this ExpirationManager for the given time. It is assumed that times passed in will be monotonically increasing.- Specified by:
get
in interfaceExpirationManager<T>
- Parameters:
unused
- the result of System.currentTimeInMillis.- Returns:
- the value corresponding to the given time
-