UNPKG

355 BJavaScriptView Raw
1/**
2 * Platform status flags.
3 *
4 * Written By:
5 * Matthew Knox
6 *
7 * License:
8 * MIT License. All code unless otherwise specified is
9 * Copyright (c) Matthew Knox and Contributors 2015.
10 */
11
12global.StatusFlag = {
13 NotStarted: -1,
14 Unknown: 0,
15 Started: 1,
16 Shutdown: 2,
17 ShutdownShouldRestart: 3
18};