Skip to content

Commit

Permalink
Hide the isStreaming PipelineOption
Browse files Browse the repository at this point in the history
This is automatically inferred when necessary in all existing runners.
Users should not need to set it unless they wish to force an alternative
execution environment in a runner that respects this flag while running
a Bounded Pipeline.
  • Loading branch information
tgroh committed Mar 24, 2017
1 parent 5c2da7d commit 50f0c12
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ public interface StreamingOptions extends
/**
* Set to true if running a streaming pipeline.
*/
@Description("Set to true if running a streaming pipeline.")
@Description("Set to true if running a streaming pipeline. This will be automatically set to "
+ "true if the pipeline contains an Unbounded PCollection.")
@Hidden
boolean isStreaming();
void setStreaming(boolean value);
}

0 comments on commit 50f0c12

Please sign in to comment.