I have an interface which has these methods about an entry in cache (Key,Value) 
i need to write a class which gets these stats to us like this.
public interface CacheEntry{
        
        public long getCreationTime();
        public long getExpirationTime();        
        public long getLastAccessTime();
        public long getLastUpdateTime();
        public long getVersion();
        public boolean isValid();

}


from the input we give of a Jboss Tree Cache which contains our particular 
entry(key,value). Can any one please let me know how this can be achieved. 
Thanks in advance.

Regards


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3957749#3957749

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3957749
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to