(InputStream _input, OutputStream _output)
| 58 | } |
| 59 | |
| 60 | protected synchronized void set(InputStream _input, OutputStream _output) { |
| 61 | input = new InputThread(name, inputListener, _input); |
| 62 | output = new OutputThread(name, _output); |
| 63 | output.setTimeout(5000); |
| 64 | stateChanged(); |
| 65 | } |
| 66 | |
| 67 | protected void setWriteTimeout(int timeout_ms) { |
| 68 | output.setTimeout(timeout_ms); |
nothing calls this directly
no test coverage detected