Google Cloud Dataflow SDK for Java, version 1.9.1
com.google.cloud.dataflow.sdk.options
Class BlockingDataflowPipelineOptions.StandardOutputFactory
- java.lang.Object
-
- com.google.cloud.dataflow.sdk.options.BlockingDataflowPipelineOptions.StandardOutputFactory
-
- All Implemented Interfaces:
- DefaultValueFactory<PrintStream>
- Enclosing interface:
- BlockingDataflowPipelineOptions
public static class BlockingDataflowPipelineOptions.StandardOutputFactory extends Object implements DefaultValueFactory<PrintStream>
Returns a default ofSystem.out
.
-
-
Constructor Summary
Constructors Constructor and Description StandardOutputFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description PrintStream
create(PipelineOptions options)
Creates a default value for a getter marked withDefault.InstanceFactory
.
-
-
-
Method Detail
-
create
public PrintStream create(PipelineOptions options)
Description copied from interface:DefaultValueFactory
Creates a default value for a getter marked withDefault.InstanceFactory
.- Specified by:
create
in interfaceDefaultValueFactory<PrintStream>
- Parameters:
options
- The current pipeline options.- Returns:
- The default value to be used for the annotated getter.
-
-