Click or drag to resize

ShutdownHandlerOrder Enumeration

The order in which the specified callback should occur when shutting down.

Namespace: GSF.Threading
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.255-beta+d64b121002b51165b41b0dbf6ccf4c8d3895faa3
Syntax
public enum ShutdownHandlerOrder
Members
Member nameValueDescription
First0 This queue is processed first. Unless there is a compelling reason to execute first, select the Default one.
Default1 This shutdown order occurs after First, but before Last.
Last2 This queue is processed last. Items such as flushing application logs should go here.
See Also