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.232-beta+203aa83a5a82d50f387e69875549969ad138d6e0
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