Package org.serviceconnector.net.connection

Examples of org.serviceconnector.net.connection.DisconnectException


      if (ConnectionLogger.isEnabled()) {
        InetSocketAddress remoteSocketAddress = (InetSocketAddress) ctx.getChannel().getRemoteAddress();
        ConnectionLogger.logDisconnectByRemoteHost(this.getClass().getSimpleName(), remoteSocketAddress.getHostName(),
            remoteSocketAddress.getPort());
      }
      DisconnectException ex = new DisconnectException("Connection disconnect, reply is outstanding. Operation stopped.");
      try {
        NettyHttpRequesterResponseHandler.this.scmpCallback.receive(ex);
      } catch (Throwable throwable) {
        LOGGER.error("receive exception", throwable);
      }
View Full Code Here


      if (ConnectionLogger.isEnabled()) {
        InetSocketAddress remoteSocketAddress = (InetSocketAddress) ctx.getChannel().getRemoteAddress();
        ConnectionLogger.logDisconnectByRemoteHost(this.getClass().getSimpleName(), remoteSocketAddress.getHostName(),
            remoteSocketAddress.getPort());
      }
      DisconnectException ex = new DisconnectException("Connection disconnect, reply is outstanding. Operation stopped.");
      try {
        NettyTcpRequesterResponseHandler.this.scmpCallback.receive(ex);
      } catch (Throwable throwable) {
        LOGGER.error("receive exception", throwable);
      }
View Full Code Here

TOP

Related Classes of org.serviceconnector.net.connection.DisconnectException

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.