You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@samza.apache.org by ja...@apache.org on 2017/06/05 17:32:18 UTC

samza git commit: Update docs for ClosableFunction

Repository: samza
Updated Branches:
  refs/heads/master ad8ba96e7 -> 95bb8e27d


Update docs for ClosableFunction


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

Branch: refs/heads/master
Commit: 95bb8e27d10df729ce69f1214301a7162ec4395e
Parents: ad8ba96
Author: vjagadish1989 <jv...@linkedin.com>
Authored: Mon Jun 5 10:32:20 2017 -0700
Committer: vjagadish1989 <jv...@linkedin.com>
Committed: Mon Jun 5 10:32:20 2017 -0700

----------------------------------------------------------------------
 .../org/apache/samza/operators/functions/ClosableFunction.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/samza/blob/95bb8e27/samza-api/src/main/java/org/apache/samza/operators/functions/ClosableFunction.java
----------------------------------------------------------------------
diff --git a/samza-api/src/main/java/org/apache/samza/operators/functions/ClosableFunction.java b/samza-api/src/main/java/org/apache/samza/operators/functions/ClosableFunction.java
index fe7137f..ea83ba4 100644
--- a/samza-api/src/main/java/org/apache/samza/operators/functions/ClosableFunction.java
+++ b/samza-api/src/main/java/org/apache/samza/operators/functions/ClosableFunction.java
@@ -26,7 +26,7 @@ import org.apache.samza.annotation.InterfaceStability;
  *
  * <p> Implement {@link #close()} to free resources used during the execution of the function, clean up state etc.
  *
- * <p> Order of finalization: {@link ClosableFunction}s are invoked in the reverse topological order of operators in the
+ * <p> Order of finalization: {@link ClosableFunction}s are closed in the reverse topological order of operators in the
  * {@link org.apache.samza.operators.StreamGraph}. For any two operators A and B in the graph, if operator B consumes results
  * from operator A, then operator B is guaranteed to be closed before operator A.
  *