Package com.google.appengine.tools.mapreduce

Examples of com.google.appengine.tools.mapreduce.MapReduceJobException


  public Value<MapReduceResult<R>> run(ResultAndStatus<R> resultAndStatus) {
    Status status = resultAndStatus.getStatus();
    if (status.getStatusCode() == Status.StatusCode.DONE) {
      return immediate(resultAndStatus.getResult());
    }
    throw new MapReduceJobException(stage, status);
  }
View Full Code Here

TOP

Related Classes of com.google.appengine.tools.mapreduce.MapReduceJobException

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.