| 2588 | } |
| 2589 | |
| 2590 | void runNetwork() { |
| 2591 | if (!g_network) { |
| 2592 | throw network_not_setup(); |
| 2593 | } |
| 2594 | |
| 2595 | if (!g_network->checkRunnable()) { |
| 2596 | throw network_cannot_be_restarted(); |
| 2597 | } |
| 2598 | |
| 2599 | if (networkOptions.traceDirectory.present() && networkOptions.runLoopProfilingEnabled) { |
| 2600 | setupRunLoopProfiler(); |
| 2601 | } |
| 2602 | |
| 2603 | g_network->run(); |
| 2604 | |
| 2605 | if (networkOptions.traceDirectory.present()) |
| 2606 | systemMonitor(); |
| 2607 | } |
| 2608 | |
| 2609 | void stopNetwork() { |
| 2610 | if (!g_network) |
no test coverage detected