ShutdownHandlerOrder Enumeration
The order in which the specified callback should occur when shutting down.
Namespace: Gemstone.ThreadingAssembly: Gemstone.Threading (in Gemstone.Threading.dll) Version: 1.0.137 -- Release Build+241897d8e370542c4e111be073532bb8b8e15519
public enum ShutdownHandlerOrder
Public Enumeration ShutdownHandlerOrder
public enum class ShutdownHandlerOrder
Gemstone.Threading.ShutdownHandlerOrder = function();
Gemstone.Threading.ShutdownHandlerOrder.createEnum('Gemstone.Threading.ShutdownHandlerOrder', false);
First | 0 |
This queue is processed first. Unless there is a compelling reason to execute first, select the Default one.
|
Default | 1 |
This shutdown order occurs after First, but before Last.
|
Last | 2 |
This queue is processed last. Items such as flushing application logs should go here.
|