(BluetoothSocket _socket)
| 39 | private Thread thread; |
| 40 | |
| 41 | BluetoothClientPort(BluetoothSocket _socket) |
| 42 | throws IOException { |
| 43 | socket = _socket; |
| 44 | |
| 45 | thread = new Thread(this, toString()); |
| 46 | thread.start(); |
| 47 | } |
| 48 | |
| 49 | @Override public String toString() { |
| 50 | BluetoothSocket socket = this.socket; |