Interface LifecycleEvent
-
- All Superinterfaces:
Event<LifecycleEvent.Type>
public interface LifecycleEvent extends Event<LifecycleEvent.Type>
A LifecycleEvent encapsulates a lifecycle action that has occurred on aConfigurableCacheFactory
. The following events can be raised: Note:LifecycleEvent
s are dispatched to interceptors by the same thread calling the lifecycle methods on the ConfigurableCacheFactory implementation. This thread may well be synchronized thus interceptors must ensure any spawned threads do not synchronize on the same CCF object.- Since:
- Coherence 12.1.2
- Author:
- nsa/hr 2012.08.24
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
LifecycleEvent.Type
TheLifecycleEvent
types.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConfigurableCacheFactory
getConfigurableCacheFactory()
Returns theConfigurableCacheFactory
instance that was activated or about to be disposed.-
Methods inherited from interface com.tangosol.net.events.Event
getDispatcher, getType, nextInterceptor
-
-
-
-
Method Detail
-
getConfigurableCacheFactory
ConfigurableCacheFactory getConfigurableCacheFactory()
Returns theConfigurableCacheFactory
instance that was activated or about to be disposed.- Returns:
- the ConfigurableCacheFactory instance that was activated or about to be disposed
-
-