ShutdownHandlerOrder Enumeration
The order in which the specified callback should occur when shutting down.
Namespace: Gemstone.DiagnosticsAssembly: Gemstone.Diagnostics (in Gemstone.Diagnostics.dll) Version: 1.0.128 -- Release Build+d9d157c80da59365061f9bf4a5d1ecd0f0496e1b
public enum ShutdownHandlerOrder
Public Enumeration ShutdownHandlerOrder
public enum class ShutdownHandlerOrder
Gemstone.Diagnostics.ShutdownHandlerOrder = function();
Gemstone.Diagnostics.ShutdownHandlerOrder.createEnum('Gemstone.Diagnostics.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.
|