ae.sys.shutdown

Application shutdown control (with SIGTERM handling). Different from atexit in that it controls initiation of graceful shutdown, as opposed to cleanup actions that are done as part of the shutdown process.

Note: thread safety of this module is questionable. Use ae.net.shutdown for networked applications. TODO: transition to thread-safe centralized event loop.

Members

Functions

addShutdownHandler
void addShutdownHandler(void delegate() fn)

Warning: the delegate may be called in an arbitrary thread.

shutdown
void shutdown()

Calls all registered handlers.

Meta

License

This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.

Authors

Vladimir Panteleev <vladimir@thecybershadow.net>