(clientExpression: string, recordName: string, immediate: boolean)
| 228 | }, |
| 229 | |
| 230 | subscribe (clientExpression: string, recordName: string, immediate: boolean) { |
| 231 | getRecordData(clientExpression, recordName).forEach((recordData) => { |
| 232 | recordData.record.subscribe(recordData.subscribeCallback, !!immediate) |
| 233 | }) |
| 234 | }, |
| 235 | |
| 236 | unsubscribe (clientExpression: string, recordName: string) { |
| 237 | getRecordData(clientExpression, recordName).forEach((recordData) => { |
nothing calls this directly
no test coverage detected