01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tcclient.cache;
05:
06: /**
07: * Callback interface for when a data item is expired and removed from the store.
08: */
09: public interface Expirable {
10:
11: /**
12: * The item handled by the key has been expired and removed
13: * @param key The item key
14: */
15: public void expire(Object key);
16: }
|