(message []byte)
| 27 | // errorStreamDecoder interprets the data on the error channel and creates a go error object from it. |
| 28 | type errorStreamDecoder interface { |
| 29 | decode(message []byte) error |
| 30 | } |
| 31 | |
| 32 | // watchErrorStream watches the errorStream for remote command error data, |