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.147 -- Release Build+71918e29738e2d0700de8aec0ad72324b16f1428
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.
|