(clientExpression: string, recordName: string, path: string)
| 254 | }, |
| 255 | |
| 256 | unsubscribeFromPath (clientExpression: string, recordName: string, path: string) { |
| 257 | getRecordData(clientExpression, recordName).forEach((recordData) => { |
| 258 | recordData.record.unsubscribe(path, recordData.subscribePathCallbacks[path]) |
| 259 | }) |
| 260 | }, |
| 261 | |
| 262 | discard (clientExpression: string, recordName: string) { |
| 263 | getRecordData(clientExpression, recordName).forEach((recordData) => { |
nothing calls this directly
no test coverage detected