(pollingInterval)
| 6349 | scheduleNextPollIfNotAlreadyScheduled(PollingInterval.Low); |
| 6350 | } |
| 6351 | function scheduleNextPollIfNotAlreadyScheduled(pollingInterval) { |
| 6352 | if (!pollingIntervalQueue(pollingInterval).pollScheduled) { |
| 6353 | scheduleNextPoll(pollingInterval); |
| 6354 | } |
| 6355 | } |
| 6356 | function scheduleNextPoll(pollingInterval) { |
| 6357 | pollingIntervalQueue(pollingInterval).pollScheduled = host.setTimeout(pollingInterval === PollingInterval.Low ? pollLowPollingIntervalQueue : pollPollingIntervalQueue, pollingInterval, pollingIntervalQueue(pollingInterval)); |
| 6358 | } |
no test coverage detected