Package com.sun.sgs.protocol.RequestFailureException

Examples of com.sun.sgs.protocol.RequestFailureException.FailureReason


      Level.FINE, e, "Obtaining request result throws ");
    }

    Throwable cause = e.getCause();
    if (cause instanceof RequestFailureException) {
        FailureReason reason =
      ((RequestFailureException) cause).getReason();
        if (reason.equals(FailureReason.DISCONNECT_PENDING)) {
      // Don't read any more from client because session
      // is disconnecting.
      return;
        }
        // Assume other failures are transient.
View Full Code Here

TOP

Related Classes of com.sun.sgs.protocol.RequestFailureException.FailureReason

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.