(msg)
| 445 | } |
| 446 | |
| 447 | _handleDataRow(msg) { |
| 448 | const activeQuery = this._getActiveQuery() |
| 449 | if (activeQuery == null) { |
| 450 | const error = new Error('Received unexpected dataRow message from backend.') |
| 451 | this._handleErrorEvent(error) |
| 452 | return |
| 453 | } |
| 454 | // delegate dataRow to active query |
| 455 | activeQuery.handleDataRow(msg) |
| 456 | } |
| 457 | |
| 458 | _handlePortalSuspended(msg) { |
| 459 | const activeQuery = this._getActiveQuery() |
nothing calls this directly
no test coverage detected