Uses of Class
org.apache.ignite.ShutdownPolicy
-
Packages that use ShutdownPolicy Package Description org.apache.ignite Contains entry-point Ignite & HPC APIs.org.apache.ignite.configuration Contains configuration-related classes. -
-
Uses of ShutdownPolicy in org.apache.ignite
Methods in org.apache.ignite that return ShutdownPolicy Modifier and Type Method Description static ShutdownPolicy
ShutdownPolicy. fromOrdinal(int ord)
Efficiently gets enumerated value from its ordinal.ShutdownPolicy
ShutdownPolicy. fromString(String val)
Return shutdown policy matching to string.ShutdownPolicy
IgniteCluster. shutdownPolicy()
Returns a policy of shutdown or default valueIgniteConfiguration.DFLT_SHUTDOWN_POLICY
if the property is not set.static ShutdownPolicy
ShutdownPolicy. valueOf(String name)
Returns the enum constant of this type with the specified name.static ShutdownPolicy[]
ShutdownPolicy. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.ignite with parameters of type ShutdownPolicy Modifier and Type Method Description void
IgniteCluster. shutdownPolicy(ShutdownPolicy shutdownPolicy)
Sets a shutdown policy on a cluster. -
Uses of ShutdownPolicy in org.apache.ignite.configuration
Fields in org.apache.ignite.configuration declared as ShutdownPolicy Modifier and Type Field Description static ShutdownPolicy
IgniteConfiguration. DFLT_SHUTDOWN_POLICY
Default policy for node shutdown.ShutdownPolicy
IgniteConfiguration. shutdown
Shutdown policy for cluster.Methods in org.apache.ignite.configuration that return ShutdownPolicy Modifier and Type Method Description ShutdownPolicy
IgniteConfiguration. getShutdownPolicy()
Gets shutdown policy.Methods in org.apache.ignite.configuration with parameters of type ShutdownPolicy Modifier and Type Method Description IgniteConfiguration
IgniteConfiguration. setShutdownPolicy(ShutdownPolicy shutdownPolicy)
Sets shutdown policy.
-