Uses of Enum Class
org.eclipse.openj9.criu.CRIUSupport.HookMode
Package
Description
This package enables access to CRIU capabilities from Java.
-
Uses of CRIUSupport.HookMode in org.eclipse.openj9.criu
Modifier and TypeClassDescriptionstatic enum
A hook can be one of the following states: SINGLE_THREAD_MODE - a mode in which only the Java thread that requested a checkpoint is permitted to run.Modifier and TypeMethodDescriptionstatic CRIUSupport.HookMode
Returns the enum constant of this class with the specified name.static CRIUSupport.HookMode[]
CRIUSupport.HookMode.values()
Returns an array containing the constants of this enum class, in the order they are declared.Modifier and TypeMethodDescriptionCRIUSupport.registerPostRestoreHook
(Runnable hook, CRIUSupport.HookMode mode, int priority) User hook that is run after restoring a checkpoint image.CRIUSupport.registerPreCheckpointHook
(Runnable hook, CRIUSupport.HookMode mode, int priority) User hook that is run before checkpointing the JVM.