You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by hs...@apache.org on 2015/10/09 23:49:36 UTC

flink git commit: Small update to Javadoc in IterativeDataset.closeWith to add missing param.

Repository: flink
Updated Branches:
  refs/heads/master 58ab14b55 -> d38aeaceb


Small update to Javadoc in IterativeDataset.closeWith to add missing param.


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/d38aeace
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/d38aeace
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/d38aeace

Branch: refs/heads/master
Commit: d38aeaceb3de56fd62266f65836ea5e97c161212
Parents: 58ab14b
Author: Henry Saputra <hs...@apache.org>
Authored: Fri Oct 9 14:46:10 2015 -0700
Committer: Henry Saputra <hs...@apache.org>
Committed: Fri Oct 9 14:46:10 2015 -0700

----------------------------------------------------------------------
 .../org/apache/flink/api/java/operators/IterativeDataSet.java     | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/d38aeace/flink-java/src/main/java/org/apache/flink/api/java/operators/IterativeDataSet.java
----------------------------------------------------------------------
diff --git a/flink-java/src/main/java/org/apache/flink/api/java/operators/IterativeDataSet.java b/flink-java/src/main/java/org/apache/flink/api/java/operators/IterativeDataSet.java
index e39d56b..5956954 100644
--- a/flink-java/src/main/java/org/apache/flink/api/java/operators/IterativeDataSet.java
+++ b/flink-java/src/main/java/org/apache/flink/api/java/operators/IterativeDataSet.java
@@ -69,8 +69,9 @@ public class IterativeDataSet<T> extends SingleInputOperator<T, T, IterativeData
 	 * set that will trigger to halt the loop as soon as the data set is empty. A typical way of using the termination
 	 * criterion is to have a filter that filters out all elements that are considered non-converged. As soon as no more
 	 * such elements exist, the iteration finishes.
-	 * 
+	 *
 	 * @param iterationResult The data set that will be fed back to the next iteration.
+	 * @param terminationCriterion The data set that being used to trigger halt on operation once it is empty.
 	 * @return The DataSet that represents the result of the iteration, after the computation has terminated.
 	 * 
 	 * @see DataSet#iterate(int)