Example #1
0
 public boolean isConnected() {
   return connectionStateMachine.isConnected();
 }
Example #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");
   }
 }