org.clapper.util.misc
Interface ObjectRemovalListener

All Superinterfaces:
java.util.EventListener

public interface ObjectRemovalListener
extends java.util.EventListener

An ObjectRemovalListener is an EventListener that can be registered with certain data store objects to receive an ObjectRemovalEvent whenever an object is removed from the data store.

Version:
$Revision: 6735 $
Author:
Copyright © 2004-2007 Brian M. Clapper
See Also:
ObjectRemovalEvent, LRUMap.addRemovalListener(org.clapper.util.misc.ObjectRemovalListener, boolean)

Method Summary
 void objectRemoved(ObjectRemovalEvent event)
          This method gets called when an object is removed from a store.
 

Method Detail

objectRemoved

void objectRemoved(ObjectRemovalEvent event)
This method gets called when an object is removed from a store.

Parameters:
event - the ObjectRemovalEvent event


Copyright © 2004-2007 Brian M. Clapper. All Rights Reserved.