Package com.google.appengine.tools.development.InstanceStateHolder

Examples of com.google.appengine.tools.development.InstanceStateHolder.InstanceState


    if (instance < 0) {
      throw new IllegalStateException("Attempt to send a start request to server/backend "
          + serverOrBackendName + " instance " + instance);
    }

    InstanceState unchangedState =
        instanceStateHolder.testAndSetIf(InstanceState.RUNNING_START_REQUEST,
            InstanceState.SLEEPING);
    if (unchangedState == null) {
      Thread requestThread = new Thread(new Runnable() {
        @Override
View Full Code Here

TOP

Related Classes of com.google.appengine.tools.development.InstanceStateHolder.InstanceState

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.