Package com.google.appengine.api.taskqueue

Examples of com.google.appengine.api.taskqueue.TransientFailureException


        }

        String errMsg = "Couldn't lease " + Integer.toString(count) + " tag:" + groupTag + " after " + retryCount + " attempts.";
        log.warning(errMsg);
        if (handleList == null) {  // Couldn't communicate with Task service.
            throw new TransientFailureException(errMsg);
        }

        return masterHandleList;  // Return what we've got, could be partial.
    }
View Full Code Here


        String errMsg = "Couldn't lease " + Integer.toString(count) + " tag:" +
            groupTag + " after " + retryCount + " attempts.";
        log.warning(errMsg);
        if (handleList == null) {  // Couldn't communicate with Task service.
            throw new TransientFailureException(errMsg);
        }

        return masterHandleList;  // Return what we've got, could be partial.
    }
View Full Code Here

TOP

Related Classes of com.google.appengine.api.taskqueue.TransientFailureException

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.