Package org.apache.ignite.lifecycle
Interface LifecycleAware
-
- All Known Subinterfaces:
PageEvictionTracker
- All Known Implementing Classes:
CacheAbstractJdbcStore,CacheJdbcPojoStore,CacheJdbcStoreSessionListener,FairFifoPageEvictionTracker,GridCacheWriteBehindStore,GridLoggerProxy,GridTcpRouterImpl,NoOpPageEvictionTracker,PageAbstractEvictionTracker,PageLockTrackerManager,PlatformAffinityFunction,PlatformDotNetAffinityFunction,PlatformDotNetCacheStore,Random2LruPageEvictionTracker,RandomLruPageEvictionTracker
public interface LifecycleAware
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidstart()Starts grid component, called on grid start.voidstop()Stops grid component, called on grid shutdown.
-
-
-
Method Detail
-
start
void start() throws IgniteExceptionStarts grid component, called on grid start.- Throws:
IgniteException- If failed.
-
stop
void stop() throws IgniteException
Stops grid component, called on grid shutdown.- Throws:
IgniteException- If failed.
-
-