All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.appengine.tools.pipeline.FutureValue Maven / Gradle / Ivy

The newest version!
// Copyright 2011 Google Inc.
// 
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy of
// the License at
// 
// http://www.apache.org/licenses/LICENSE-2.0
// 
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations under
// the License.

package com.google.appengine.tools.pipeline;


/**
 * An abstract representation of a value slot that will be filled in the future
 * when some job runs and produces output.
 * 

* An instance of {@code FutureValue} is obtained as the return value of a call * to one of the {@code futureCall(job, argument...)} family of methods. The * returned {@code FutureValue} represents the future output from the given job. *

* Once obtained in this way, an instance of {@code FutureValue} may be passed * as an argument to another invocation of {@code futureCall(anotherJob, * argumnet...)} indicating that the output from the first job should be an * input to the second job. For example the following code might appear inside * of the {@code run()} method of a Job.

* *
 * FutureValue<Integer> age = futureCall(new GetAgeJob());
 * futureCall(new UseAgeJob(), age);
 * 
* *
The invocation of {@code futureCall(new UseAgeJob(), age)} * above instructs the framework that after the value slot corresponding to age * has been filled, the {@code run()} method of {@code UseAgeJob} should be * invoked with the value of the filled slot in the argument position * corresponding to {@code age}. *

* A {@code FutureValue} may also be the return value of the {@code run()} * method. * * @param The type of the value represented by this {@code FutureValue} * */ public interface FutureValue extends Value { /** * Returns a String uniquely identifying the Job whose output will fill the * value slot represented by this {@code FutureValue}. This String may be * passed to {@link PipelineService#getJobInfo(String)} in order to query the * state of the Job. * * @return a String uniquely identifying the source job. */ public String getSourceJobHandle(); /** * Returns a String uniquely identifying the Pipeline that this {@code * FutureValue} belongs to. This is the same as the handle of the root job of * the Pipeline. This String may be passed to * {@link PipelineService#getJobInfo(String)} in order to query the state of * the root Job. * * @return a String uniquely identifying the Pipeline */ public String getPipelineHandle(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy