Package org.infinispan.notifications
Interface Listenable
-
- All Known Subinterfaces:
AdvancedCache<K,V>
,Cache<K,V>
,CacheManagerNotifier
,CacheNotifier<K,V>
,ClassLoaderAwareFilteringListenable<K,V>
,ClassLoaderAwareListenable
,ClusterCacheNotifier<K,V>
,DataConversionAwareListenable<K,V>
,EmbeddedCacheManager
,FilteringListenable<K,V>
,SecureCache<K,V>
- All Known Implementing Classes:
AbstractDelegatingAdvancedCache
,org.infinispan.cache.impl.AbstractDelegatingAdvancedCache
,AbstractDelegatingCache
,org.infinispan.cache.impl.AbstractDelegatingCache
,AbstractDelegatingEmbeddedCacheManager
,org.infinispan.manager.impl.AbstractDelegatingEmbeddedCacheManager
,CacheManagerNotifierImpl
,CacheNotifierImpl
,DefaultCacheManager
public interface Listenable
Interface that denotes that the implementation can have listeners attached to it.- Since:
- 4.0
- Author:
- Manik Surtani
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addListener(Object listener)
Adds a listener to the component.Set<Object>
getListeners()
void
removeListener(Object listener)
Removes a listener from the component.
-
-
-
Method Detail
-
addListener
void addListener(Object listener)
Adds a listener to the component. Typically, listeners would need to be annotated withListener
and further to that, contain methods annotated appropriately, otherwise the listener will not be registered. See theListener
annotation for more information.- Parameters:
listener
- must not be null.
-
removeListener
void removeListener(Object listener)
Removes a listener from the component.- Parameters:
listener
- listener to remove. Must not be null.- Throws:
IllegalLifecycleStateException
- may be thrown if theListenable
is stopped.
-
-