Package net.sf.ehcache.event
Class CacheEventListenerFactory
- java.lang.Object
-
- net.sf.ehcache.event.CacheEventListenerFactory
-
- Direct Known Subclasses:
RMICacheReplicatorFactory,TerracottaCacheEventReplicationFactory
public abstract class CacheEventListenerFactory extends java.lang.ObjectAn abstract factory for creating listeners. Implementers should provide their own concrete factory extending this factory. It can then be configured in ehcache.xml.- Version:
- $Id$
- Author:
- Greg Luck
-
-
Constructor Summary
Constructors Constructor Description CacheEventListenerFactory()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract CacheEventListenercreateCacheEventListener(java.util.Properties properties)Create aCacheEventListener
-
-
-
Method Detail
-
createCacheEventListener
public abstract CacheEventListener createCacheEventListener(java.util.Properties properties)
Create aCacheEventListener- Parameters:
properties- implementation specific properties. These are configured as comma separated name value pairs in ehcache.xml- Returns:
- a constructed CacheEventListener
-
-