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.150 -- Release Build+058518a49b1370d27547de9971386266c9284ccd
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.
|