* Signals the application to shut down during the next * execution of the event loop. */
| 436 | * execution of the event loop. |
| 437 | */ |
| 438 | void Application::RequestShutdown() |
| 439 | { |
| 440 | Log(LogInformation, "Application", "Received request to shut down."); |
| 441 | |
| 442 | m_ShuttingDown = true; |
| 443 | } |
| 444 | |
| 445 | /** |
| 446 | * Signals the application to restart during the next |