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.160 -- Release Build+5c02decbb6aa321138caaadf548ee87ad464d811
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.
|