Repository: samza Updated Branches: refs/heads/master e3e553673 -> a637a57e0
SAMZA-1290: Fix javadoc for ApplicationRuner Author: Jacob Maes <[email protected]> Reviewers: Prateek Maheshwari <[email protected]> Closes #190 from jmakes/samza-1290 Project: http://git-wip-us.apache.org/repos/asf/samza/repo Commit: http://git-wip-us.apache.org/repos/asf/samza/commit/a637a57e Tree: http://git-wip-us.apache.org/repos/asf/samza/tree/a637a57e Diff: http://git-wip-us.apache.org/repos/asf/samza/diff/a637a57e Branch: refs/heads/master Commit: a637a57e020fad507802b97a8da095a777b02b10 Parents: e3e5536 Author: Jacob Maes <[email protected]> Authored: Fri May 12 15:22:47 2017 -0700 Committer: Jacob Maes <[email protected]> Committed: Fri May 12 15:22:47 2017 -0700 ---------------------------------------------------------------------- .../src/main/java/org/apache/samza/runtime/ApplicationRunner.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/samza/blob/a637a57e/samza-api/src/main/java/org/apache/samza/runtime/ApplicationRunner.java ---------------------------------------------------------------------- diff --git a/samza-api/src/main/java/org/apache/samza/runtime/ApplicationRunner.java b/samza-api/src/main/java/org/apache/samza/runtime/ApplicationRunner.java index eda09a2..0586e9e 100644 --- a/samza-api/src/main/java/org/apache/samza/runtime/ApplicationRunner.java +++ b/samza-api/src/main/java/org/apache/samza/runtime/ApplicationRunner.java @@ -29,7 +29,7 @@ import java.lang.reflect.Constructor; /** - * A physical execution engine to deploy the config and jobs to run the {@link org.apache.samza.operators.StreamGraph} + * The primary means of managing execution of the {@link org.apache.samza.application.StreamApplication} at runtime. */ @InterfaceStability.Unstable public abstract class ApplicationRunner {
