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.181-beta
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