(self, src, ancReload, maxTime)
| 201 | currentTime += cycleTimeMs / 1000 + inactiveTimeMs / 1000 |
| 202 | |
| 203 | def _isTimeCacheValid(self, src, ancReload, maxTime): |
| 204 | try: |
| 205 | cacheMaxTime = self._data[src.item.ID][ancReload]['maxTime'] |
| 206 | except KeyError: |
| 207 | return False |
| 208 | return maxTime <= cacheMaxTime |
| 209 | |
| 210 | def _getDataPoint(self, src, ancReload, time, dataFunc): |
| 211 | data = dataFunc(src=src, ancReload=ancReload) |
no outgoing calls
no test coverage detected