Package com.google.apphosting.api.ApiProxy

Examples of com.google.apphosting.api.ApiProxy.CallNotFoundException


    private byte[] callInternal() {
      ApiProxy.setEnvironmentForCurrentThread(environment);
      try {
        LocalRpcService service = getService(packageName);
        if (service == null) {
          throw new CallNotFoundException(packageName, methodName);
        }
        LocalCapabilitiesEnvironment capEnv = context.getLocalCapabilitiesEnvironment();
        CapabilityStatus capabilityStatus = capEnv
            .getStatusFromMethodName(packageName, methodName);
        if (!CapabilityStatus.ENABLED.equals(capabilityStatus)) {
View Full Code Here


          latencySimulatorCache.put(candidate, new LatencySimulator(latencyPercentiles));
        }
        return candidate;
      }
    }
    throw new CallNotFoundException(packageName, methodName);
  }
View Full Code Here

TOP

Related Classes of com.google.apphosting.api.ApiProxy.CallNotFoundException

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.