org.jboss.ha.framework.server.util
Interface DistributedTimedCachePolicy.TimedEntry

All Superinterfaces:
Serializable
Enclosing class:
DistributedTimedCachePolicy

public static interface DistributedTimedCachePolicy.TimedEntry
extends Serializable

The interface that cache entries support.


Method Summary
 void destroy()
          Notify the entry that it has been removed from the cache.
 Object getValue()
          Get the value component of the TimedEntry.
 void init(long now)
          Initializes an entry with the current cache time.
 boolean isCurrent(long now)
          Is the entry still valid basis the current time
 boolean refresh()
          Attempt to extend the entry lifetime by refreshing it.
 

Method Detail

init

void init(long now)
Initializes an entry with the current cache time. This is called when the entry is first inserted into the cache so that entries do not have to know the absolute system time.


isCurrent

boolean isCurrent(long now)
Is the entry still valid basis the current time

Returns:
true if the entry is within its lifetime, false if it is expired.

refresh

boolean refresh()
Attempt to extend the entry lifetime by refreshing it.

Returns:
true if the entry was refreshed successfully, false otherwise.

destroy

void destroy()
Notify the entry that it has been removed from the cache.


getValue

Object getValue()
Get the value component of the TimedEntry. This may or may not be the TimedEntry implementation.



Copyright © 2002 JBoss Group, LLC. All Rights Reserved.