Is this service currently connected? This implementation uses a private boolean field to store the connection state. This method returns the value of that field. Subclasses may want to override this method to verify that any connection to the message store is still alive. @return true if
()
| 442 | * @return true if the service is connected, false if it is not connected |
| 443 | */ |
| 444 | public synchronized boolean isConnected() { |
| 445 | return connected; |
| 446 | } |
| 447 | |
| 448 | /** |
| 449 | * Set the connection state of this service. The connection state |