(msg)
| 514 | } |
| 515 | |
| 516 | _handleCopyData(msg) { |
| 517 | const activeQuery = this._getActiveQuery() |
| 518 | if (activeQuery == null) { |
| 519 | const error = new Error('Received unexpected copyData message from backend.') |
| 520 | this._handleErrorEvent(error) |
| 521 | return |
| 522 | } |
| 523 | activeQuery.handleCopyData(msg, this.connection) |
| 524 | } |
| 525 | |
| 526 | _handleNotification(msg) { |
| 527 | this.emit('notification', msg) |
nothing calls this directly
no test coverage detected