Uses of Class
org.forgerock.util.thread.listener.ShutdownPriority
-
Packages that use ShutdownPriority Package Description org.forgerock.util.thread.listener Provides interfaces for handling shutdown. -
-
Uses of ShutdownPriority in org.forgerock.util.thread.listener
Methods in org.forgerock.util.thread.listener that return ShutdownPriority Modifier and Type Method Description static ShutdownPriority
ShutdownPriority. valueOf(String name)
Returns the enum constant of this type with the specified name.static ShutdownPriority[]
ShutdownPriority. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.forgerock.util.thread.listener that return types with arguments of type ShutdownPriority Modifier and Type Method Description static List<ShutdownPriority>
ShutdownPriority. getPriorities()
Returns list of all the priorities (ordered from the highest to the lowest priority) defined in the system.Methods in org.forgerock.util.thread.listener with parameters of type ShutdownPriority Modifier and Type Method Description void
ShutdownManager. addShutdownListener(ShutdownListener listener, ShutdownPriority priority)
Adds a ShutdownListener to this ShutdownManager with the supplied priority.void
ShutdownManager. replaceShutdownListener(ShutdownListener oldListener, ShutdownListener newListener, ShutdownPriority priority)
Replaces an existing ShutdownListener with the new ShutdownListener.
-