Stat information for an executor. It contains the number of pending task for the executor now.
| 37 | // It contains the number of pending task |
| 38 | // for the executor now. |
| 39 | struct ExecutorStat { |
| 40 | size_t pendingTaskCount = 0; |
| 41 | ExecutorStat() = default; |
| 42 | }; |
| 43 | // Options for a schedule. |
| 44 | // The option contains: |
| 45 | // - bool prompt. Whether or not this schedule |