本文整理汇总了Java中com.espertech.esper.client.context.ContextPartitionIdentifierInitiatedTerminated类的典型用法代码示例。如果您正苦于以下问题:Java ContextPartitionIdentifierInitiatedTerminated类的具体用法?Java ContextPartitionIdentifierInitiatedTerminated怎么用?Java ContextPartitionIdentifierInitiatedTerminated使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
ContextPartitionIdentifierInitiatedTerminated类属于com.espertech.esper.client.context包,在下文中一共展示了ContextPartitionIdentifierInitiatedTerminated类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getSelectedContextPartitionPathIds
import com.espertech.esper.client.context.ContextPartitionIdentifierInitiatedTerminated; //导入依赖的package包/类
public Collection<Integer> getSelectedContextPartitionPathIds(ContextPartitionSelector contextPartitionSelector) {
if (contextPartitionSelector instanceof ContextPartitionSelectorFiltered) {
ContextPartitionSelectorFiltered filter = (ContextPartitionSelectorFiltered) contextPartitionSelector;
ContextPartitionIdentifierInitiatedTerminated identifier = new ContextPartitionIdentifierInitiatedTerminated();
List<Integer> accepted = new ArrayList<Integer>();
for (Map.Entry<ContextControllerCondition, ContextControllerInitTermInstance> entry : endConditions.entrySet()) {
identifier.setEndTime(entry.getValue().getEndTime());
identifier.setStartTime(entry.getValue().getStartTime());
identifier.setProperties(entry.getValue().getStartProperties());
identifier.setContextPartitionId(entry.getValue().getInstanceHandle().getContextPartitionOrPathId());
if (filter.filter(identifier)) {
accepted.add(entry.getValue().getInstanceHandle().getContextPartitionOrPathId());
}
}
return accepted;
}
throw ContextControllerSelectorUtil.getInvalidSelector(new Class[0], contextPartitionSelector);
}
示例2: filter
import com.espertech.esper.client.context.ContextPartitionIdentifierInitiatedTerminated; //导入依赖的package包/类
public boolean filter(ContextPartitionIdentifier contextPartitionIdentifier) {
ContextPartitionIdentifierInitiatedTerminated id = (ContextPartitionIdentifierInitiatedTerminated) contextPartitionIdentifier;
if (matchP00Value == null && cpids.contains(id.getContextPartitionId())) {
throw new RuntimeException("Already exists context id: " + id.getContextPartitionId());
}
cpids.add(id.getContextPartitionId());
startTimes.add(id.getStartTime());
String p00Value = (String) ((EventBean) id.getProperties().get("s0")).get("p00");
p00PropertyValues.add(p00Value);
lastValue = id;
return matchP00Value != null && matchP00Value.equals(p00Value);
}
示例3: keyPayloadToIdentifier
import com.espertech.esper.client.context.ContextPartitionIdentifierInitiatedTerminated; //导入依赖的package包/类
public ContextPartitionIdentifier keyPayloadToIdentifier(Object payload) {
ContextControllerInitTermState state = (ContextControllerInitTermState) payload;
return new ContextPartitionIdentifierInitiatedTerminated(
state == null ? null : state.getPatternData(),
state == null ? 0 : state.getStartTime(),
null);
}
示例4: filter
import com.espertech.esper.client.context.ContextPartitionIdentifierInitiatedTerminated; //导入依赖的package包/类
public boolean filter(ContextPartitionIdentifier contextPartitionIdentifier) {
ContextPartitionIdentifierInitiatedTerminated id = (ContextPartitionIdentifierInitiatedTerminated) contextPartitionIdentifier;
if (matchP00Value == null && cpids.contains(id.getContextPartitionId())) {
throw new RuntimeException("Already exists context id: " + id.getContextPartitionId());
}
cpids.add(id.getContextPartitionId());
startTimes.add(id.getStartTime());
String p00Value = (String) ((EventBean)id.getProperties().get("s0")).get("p00");
p00PropertyValues.add(p00Value);
lastValue = id;
return matchP00Value != null && matchP00Value.equals(p00Value);
}