(clientExpression: string, recordName: string)
| 234 | }, |
| 235 | |
| 236 | unsubscribe (clientExpression: string, recordName: string) { |
| 237 | getRecordData(clientExpression, recordName).forEach((recordData) => { |
| 238 | recordData.record.unsubscribe(recordData.subscribeCallback) |
| 239 | }) |
| 240 | }, |
| 241 | |
| 242 | subscribeWithPath (clientExpression: string, recordName: string, path: string, immediate: boolean) { |
| 243 | getRecordData(clientExpression, recordName).forEach((recordData) => { |
nothing calls this directly
no test coverage detected