Package com.google.appengine.tools.mapreduce.impl

Examples of com.google.appengine.tools.mapreduce.impl.DeleteFilesJob


    @Override public String toString() {
      return getClass().getSimpleName() + "(" + mrJobId + ")";
    }

    @Override public Value<Void> run(ResultAndCounters<List<AppEngineFile>> mapResult) {
      futureCall(new DeleteFilesJob("" + this), immediate(mapResult.getOutputResult()),
          Util.jobSettings(settings));
      return immediate(null);
    }
View Full Code Here


    @Override public String toString() {
      return getClass().getSimpleName() + "(" + mrJobId + ")";
    }

    @Override public Value<Void> run(ShuffleResult<K, V, O> shuffleResult) {
      futureCall(new DeleteFilesJob("" + this),
          immediate(shuffleResult.getReducerInputFiles()),
          Util.jobSettings(settings));
      return immediate(null);
    }
View Full Code Here

TOP

Related Classes of com.google.appengine.tools.mapreduce.impl.DeleteFilesJob

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.