Esempio n. 1
0
 public boolean isConnected() {
   return connectionStateMachine.isConnected();
 }
Esempio n. 2
0
 private void checkIsConnected() throws CDAPException {
   if (!connectionStateMachine.isConnected()) {
     throw new CDAPException(
         "Cannot send a message " + "because the CDAP session is not in CONNECTED state");
   }
 }