Package asia.stampy.common.gateway

Examples of asia.stampy.common.gateway.MessageListenerHaltException


    case RECEIPT:
      setReceiptId((String) null);
      if (isCloseOnDisconnectMessage()) {
        log.info("Receipt for disconnect message received, disconnecting");
        getGateway().closeConnection(hostPort);
        throw new MessageListenerHaltException();
      }
      break;
    default:
      return;
View Full Code Here


      loggedInConnections.add(hostPort);
    } catch (TerminateSessionException e) {
      log.error("Login handler has terminated the session", e);
      sendErrorMessage(e.getMessage(), hostPort);
      gateway.closeConnection(hostPort);
      throw new MessageListenerHaltException();
    }
  }
View Full Code Here

TOP

Related Classes of asia.stampy.common.gateway.MessageListenerHaltException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.