()
| 146 | } |
| 147 | |
| 148 | export function commitProcessConfigRegistration(): void { |
| 149 | if (!stagedProcessEntries) { |
| 150 | return; |
| 151 | } |
| 152 | |
| 153 | desiredProcessEntries = stagedProcessEntries; |
| 154 | stagedProcessEntries = null; |
| 155 | pendingProcessConfig = true; |
| 156 | } |
| 157 | |
| 158 | export function takePendingProcessConfig(): |
| 159 | | RuntimeProcessConfigEntry[] |