(queryId: string)
| 581 | } |
| 582 | |
| 583 | private async markQueryAsSeen(queryId: string) { |
| 584 | if (this.client.awaitReady) await this.client.awaitReady; |
| 585 | return this.client.db.setMetadata([QUERY_STATE_KEY, queryId], true); |
| 586 | } |
| 587 | |
| 588 | /** |
| 589 | * @hidden |
no test coverage detected