()
| 9460 | /*#__PURE__*/ |
| 9461 | function () { |
| 9462 | function QueryManager() { |
| 9463 | (0, _classCallCheck2.default)(this, QueryManager); |
| 9464 | this.pendingQueries = new Set(); |
| 9465 | this.invalidQueryType = null; |
| 9466 | this.invalidErrorMessage = ''; |
| 9467 | |
| 9468 | this.checkInvalid = function () { |
| 9469 | return false; |
| 9470 | }; |
| 9471 | } // API THAT SHOULD BE EXPOSED TO APPLICATION |
| 9472 | // Checks invalidation callback and then all pending queries for completion |
| 9473 | // Should only be called once per tick |
| 9474 |
nothing calls this directly
no outgoing calls
no test coverage detected