Package org.apache.ignite.lifecycle
Interface LifecycleAware
-
- All Known Implementing Classes:
CacheAbstractJdbcStore
,CacheJdbcPojoStore
,CacheJdbcStoreSessionListener
,PlatformDotNetAffinityFunction
public interface LifecycleAware
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
start()
Starts grid component, called on grid start.void
stop()
Stops grid component, called on grid shutdown.
-
-
-
Method Detail
-
start
void start() throws IgniteException
Starts 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.
-
-