(state, {id, timeoutSec, killEnabled})
| 175 | }, |
| 176 | |
| 177 | SET_KILL_INTERVAL(state, {id, timeoutSec, killEnabled}) { |
| 178 | state.killIntervalId = id; |
| 179 | state.killTimeoutSec = timeoutSec; |
| 180 | state.killEnabled = killEnabled; |
| 181 | }, |
| 182 | |
| 183 | DEC_KILL_INTERVAL(state) { |
| 184 | state.killTimeoutSec--; |
nothing calls this directly
no outgoing calls
no test coverage detected