本文整理汇总了Java中org.apache.beam.sdk.options.Default.Integer方法的典型用法代码示例。如果您正苦于以下问题:Java Default.Integer方法的具体用法?Java Default.Integer怎么用?Java Default.Integer使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.beam.sdk.options.Default
的用法示例。
在下文中一共展示了Default.Integer方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getQuitePeriod
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Quite Period from last job start. In minutes")
@Default.Integer(5)
Integer getQuitePeriod();
示例2: getLimitStores
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Input Limit products summary num")
@Default.Integer(10)
Integer getLimitStores();
示例3: getSqlPort
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("MS SQL Server port number")
@Default.Integer(1433)
@Required
Integer getSqlPort();
示例4: value
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Sets the number of times that failed tasks are re-executed. "
+ "A value of zero effectively disables fault tolerance. A value of -1 indicates "
+ "that the system default value (as defined in the configuration) should be used.")
@Default.Integer(-1)
Integer getNumberOfExecutionRetries();
示例5: getTeamWindowDuration
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Numeric value of fixed window duration for team analysis, in minutes")
@Default.Integer(60)
Integer getTeamWindowDuration();
示例6: getWindmillServicePort
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Port for communicating with a remote windmill service.")
@Default.Integer(443)
int getWindmillServicePort();
示例7: getParallelism
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Default.Integer(1)
int getParallelism();
示例8: getDefault
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Default.Integer(19)
int getDefault();
示例9: getUserActivityWindowDuration
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Numeric value of fixed window for finding mean of user session duration, "
+ "in minutes")
@Default.Integer(30)
Integer getUserActivityWindowDuration();
示例10: getWindowDuration
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Numeric value of fixed window duration, in minutes")
@Default.Integer(60)
Integer getWindowDuration();
示例11: getWindowDuration
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Numeric value of sliding window duration, in minutes")
@Default.Integer(WINDOW_DURATION)
Integer getWindowDuration();
示例12: getWindowSlideEvery
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Numeric value of window 'slide every' setting, in minutes")
@Default.Integer(WINDOW_SLIDE_EVERY)
Integer getWindowSlideEvery();
示例13: getWindowDuration
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Numeric value of window duration for fixed windows, in minutes")
@Default.Integer(WINDOW_DURATION)
Integer getWindowDuration();
示例14: getMonthFilter
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Numeric value of month to filter on")
@Default.Integer(MONTH_TO_FILTER)
Integer getMonthFilter();
示例15: getWindowSize
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Fixed window duration, in minutes")
@Default.Integer(WINDOW_SIZE)
Integer getWindowSize();