(clientExpression: string, recordName: string, path: string)
| 247 | }, |
| 248 | |
| 249 | unsubscribeFromPath (clientExpression: string, recordName: string, path: string) { |
| 250 | getRecordData(clientExpression, recordName).forEach((recordData) => { |
| 251 | recordData.record.unsubscribe(path, recordData.subscribePathCallbacks[path]) |
| 252 | }) |
| 253 | }, |
| 254 | |
| 255 | discard (clientExpression: string, recordName: string) { |
| 256 | getRecordData(clientExpression, recordName).forEach((recordData) => { |
nothing calls this directly
no test coverage detected