Repository: beam Updated Branches: refs/heads/master 61f179d74 -> c045b0ec2
Remove false disclaimers about state/timers from javadoc Project: http://git-wip-us.apache.org/repos/asf/beam/repo Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/8729ec35 Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/8729ec35 Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/8729ec35 Branch: refs/heads/master Commit: 8729ec354de3e679eb509c7ec7cfcda8382128a0 Parents: 61f179d Author: Kenneth Knowles <[email protected]> Authored: Wed Mar 22 22:15:08 2017 -0700 Committer: Davor Bonaci <[email protected]> Committed: Thu Mar 23 09:28:47 2017 -0700 ---------------------------------------------------------------------- .../src/main/java/org/apache/beam/sdk/transforms/DoFn.java | 9 --------- 1 file changed, 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/beam/blob/8729ec35/sdks/java/core/src/main/java/org/apache/beam/sdk/transforms/DoFn.java ---------------------------------------------------------------------- diff --git a/sdks/java/core/src/main/java/org/apache/beam/sdk/transforms/DoFn.java b/sdks/java/core/src/main/java/org/apache/beam/sdk/transforms/DoFn.java index 6c5abbc..20c66c0 100644 --- a/sdks/java/core/src/main/java/org/apache/beam/sdk/transforms/DoFn.java +++ b/sdks/java/core/src/main/java/org/apache/beam/sdk/transforms/DoFn.java @@ -384,9 +384,6 @@ public abstract class DoFn<InputT, OutputT> implements Serializable, HasDisplayD /** * Annotation for declaring and dereferencing state cells. * - * <p><i>Not currently supported by any runner. When ready, the feature will work as described - * here.</i> - * * <p>To declare a state cell, create a field of type {@link StateSpec} annotated with a {@link * StateId}. To use the cell during processing, add a parameter of the appropriate {@link State} * subclass to your {@link ProcessElement @ProcessElement} or {@link OnTimer @OnTimer} method, and @@ -428,9 +425,6 @@ public abstract class DoFn<InputT, OutputT> implements Serializable, HasDisplayD /** * Annotation for declaring and dereferencing timers. * - * <p><i>Not currently supported by any runner. When ready, the feature will work as described - * here.</i> - * * <p>To declare a timer, create a field of type {@link TimerSpec} annotated with a {@link * TimerId}. To use the cell during processing, add a parameter of the type {@link Timer} to your * {@link ProcessElement @ProcessElement} or {@link OnTimer @OnTimer} method, and annotate it with @@ -475,9 +469,6 @@ public abstract class DoFn<InputT, OutputT> implements Serializable, HasDisplayD /** * Annotation for registering a callback for a timer. * - * <p><i>Not currently supported by any runner. When ready, the feature will work as described - * here.</i> - * * <p>See the javadoc for {@link TimerId} for use in a full example. * * <p>The method annotated with {@code @OnTimer} may have parameters according to the same logic
