(String _name, OutputStream _os)
| 45 | int head, tail; |
| 46 | |
| 47 | OutputThread(String _name, OutputStream _os) { |
| 48 | super("OutputThread " + _name); |
| 49 | |
| 50 | name = _name; |
| 51 | os = _os; |
| 52 | |
| 53 | start(); |
| 54 | } |
| 55 | |
| 56 | synchronized void close() { |
| 57 | OutputStream os2 = os; |