Set the connection state of this service. The connection state will automatically be set by the service implementation during the connect and close methods. Subclasses will need to call this method to set the state if the service was automatically disconnected. The im
(boolean connected)
| 459 | * false if it is not connected |
| 460 | */ |
| 461 | protected synchronized void setConnected(boolean connected) { |
| 462 | this.connected = connected; |
| 463 | } |
| 464 | |
| 465 | /** |
| 466 | * Close this service and terminate its connection. A close |