org.apache.commons.cache
Interface StorageListener

All Superinterfaces:
Serializable
All Known Implementing Classes:
BaseStorageListener, GroupMapImpl, LRUEvictionPolicy

public interface StorageListener
extends Serializable

tk.

Version:
$Id: StorageListener.java 155435 2005-02-26 13:17:27Z dirkv $
Author:
Rodney Waldhoff

Method Summary
 void cleared()
           
 void cleared(Serializable key)
           
 void notStored(Serializable key, Serializable val, Long expiresAt, Long cost, Serializable group)
           
 void stored(Serializable key, Serializable val, Long expiresAt, Long cost, Serializable group)
           
 void storeRequested(Serializable key, Serializable val, Long expiresAt, Long cost, Serializable group)
           
 

Method Detail

storeRequested

void storeRequested(Serializable key,
                    Serializable val,
                    Long expiresAt,
                    Long cost,
                    Serializable group)

stored

void stored(Serializable key,
            Serializable val,
            Long expiresAt,
            Long cost,
            Serializable group)

notStored

void notStored(Serializable key,
               Serializable val,
               Long expiresAt,
               Long cost,
               Serializable group)

cleared

void cleared(Serializable key)

cleared

void cleared()


Copyright © 2001-2010 The Apache Software Foundation. All Rights Reserved.