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.253-beta+ffb7163c9e3b771705bc5b9aa3f09870f2cb9e2c
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