1 5 package com.opensymphony.oscache.base.events; 6 7 8 17 public interface CacheEntryEventListener extends CacheEventListener { 18 21 void cacheEntryAdded(CacheEntryEvent event); 22 23 26 void cacheEntryFlushed(CacheEntryEvent event); 27 28 31 void cacheEntryRemoved(CacheEntryEvent event); 32 33 36 void cacheEntryUpdated(CacheEntryEvent event); 37 38 41 void cacheGroupFlushed(CacheGroupEvent event); 42 43 49 void cachePatternFlushed(CachePatternEvent event); 50 51 54 void cacheFlushed(CachewideEvent event); 55 } 56 | Popular Tags |