(className: string, query: QueryData, queryHash: string)
| 11 | clientRequestIds: Object; |
| 12 | |
| 13 | constructor(className: string, query: QueryData, queryHash: string) { |
| 14 | this.className = className; |
| 15 | this.query = query; |
| 16 | this.hash = queryHash; |
| 17 | this.clientRequestIds = new Map(); |
| 18 | } |
| 19 | |
| 20 | addClientSubscription(clientId: number, requestId: number): void { |
| 21 | if (!this.clientRequestIds.has(clientId)) { |
nothing calls this directly
no outgoing calls
no test coverage detected