本文整理汇总了Java中org.apache.nifi.components.state.Scope.CLUSTER属性的典型用法代码示例。如果您正苦于以下问题:Java Scope.CLUSTER属性的具体用法?Java Scope.CLUSTER怎么用?Java Scope.CLUSTER使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.apache.nifi.components.state.Scope
的用法示例。
在下文中一共展示了Scope.CLUSTER属性的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getStateScope
@Override
protected Scope getStateScope(final ProcessContext context) {
final String location = context.getProperty(DIRECTORY_LOCATION).getValue();
if (LOCATION_REMOTE.getValue().equalsIgnoreCase(location)) {
return Scope.CLUSTER;
}
return Scope.LOCAL;
}
示例2: getStateScope
@Override
protected Scope getStateScope(final ProcessContext context) {
// Use cluster scope so that component can be run on Primary Node Only and can still
// pick up where it left off, even if the Primary Node changes.
return Scope.CLUSTER;
}