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/94b2f9ee Tree: http://git-wip-us.apache.org/repos/asf/samza/tree/94b2f9ee Diff: http://git-wip-us.apache.org/repos/asf/samza/diff/94b2f9ee Branch: refs/heads/0.13.0 Commit: 94b2f9eec4f21ab7d94c126124fe3c6fbf82f6bd Parents: a0b5c53 Author: Jacob Maes <[email protected]> Authored: Fri May 12 15:22:47 2017 -0700 Committer: Xinyu Liu <[email protected]> Committed: Mon May 15 14:38:01 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/94b2f9ee/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 {
