(clientExpression: string, recordName: string)
| 241 | }, |
| 242 | |
| 243 | unsubscribe (clientExpression: string, recordName: string) { |
| 244 | getRecordData(clientExpression, recordName).forEach((recordData) => { |
| 245 | recordData.record.unsubscribe(recordData.subscribeCallback) |
| 246 | }) |
| 247 | }, |
| 248 | |
| 249 | subscribeWithPath (clientExpression: string, recordName: string, path: string, immediate: boolean) { |
| 250 | getRecordData(clientExpression, recordName).forEach((recordData) => { |
nothing calls this directly
no test coverage detected