本文整理汇总了Java中org.apache.beam.sdk.options.Default.Boolean方法的典型用法代码示例。如果您正苦于以下问题:Java Default.Boolean方法的具体用法?Java Default.Boolean怎么用?Java Default.Boolean使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.beam.sdk.options.Default
的用法示例。
在下文中一共展示了Default.Boolean方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: isBlockOnRun
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Default.Boolean(true)
@Description(
"If the pipeline should block awaiting completion of the pipeline. If set to true, "
+ "a call to Pipeline#run() will block until all PTransforms are complete. Otherwise, "
+ "the Pipeline will execute asynchronously. If set to false, use "
+ "PipelineResult#waitUntilFinish() to block until the Pipeline is complete.")
boolean isBlockOnRun();
示例2: isControlPubsub
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Whether to use a Pub/Sub topic for control")
@Default.Boolean(true)
boolean isControlPubsub();
示例3: isControlGCS
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Whether to use a GCS path for control")
@Default.Boolean(false)
boolean isControlGCS();
示例4: isSourcePubsub
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Whether to connect to Pub/Sub as source")
@Default.Boolean(false)
Boolean isSourcePubsub();
示例5: isSourceJDBC
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Whether to connect to a JDBC source")
@Default.Boolean(false)
Boolean isSourceJDBC();
示例6: isSourceRecordFile
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Whether to connect to a GCS source in RecordFile format")
@Default.Boolean(false)
Boolean isSourceRecordFile();
示例7: isSourceRedditBQ
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Whether to connect to BigQuery dataset with Reddit posts and comments")
@Default.Boolean(false)
Boolean isSourceRedditBQ();
示例8: isSourceGDELTbucket
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Whether to read files from GDELT bucket")
@Default.Boolean(false)
Boolean isSourceGDELTbucket();
示例9: getIndexAsShorttext
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Text indexing option: Index as Short text or as an Article. Default: false")
@Default.Boolean(false)
Boolean getIndexAsShorttext();
示例10: getWriteTruncate
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Truncate sink BigQuery dataset before writing")
@Default.Boolean(false)
Boolean getWriteTruncate();
示例11: getStrictCast
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Should do a strict Datastore Entity to BQ Table Row cast")
@Default.Boolean(false)
ValueProvider<Boolean> getStrictCast();
示例12: getRecursive
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Whether to use the recursive algorithm")
@Default.Boolean(true)
Boolean getRecursive();
示例13: getOutputToBigQuery
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Whether output to BigQuery")
@Default.Boolean(true)
Boolean getOutputToBigQuery();
示例14: getOutputToDatastore
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Whether output to Cloud Datastore")
@Default.Boolean(false)
Boolean getOutputToDatastore();
示例15: getKeepJobsRunning
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Whether to keep jobs running after local process exit")
@Default.Boolean(false)
boolean getKeepJobsRunning();