当前位置: 首页>>代码示例>>Java>>正文


Java ContextPartitionIdentifierInitiatedTerminated类代码示例

本文整理汇总了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);
}
 
开发者ID:mobile-event-processing,项目名称:Asper,代码行数:19,代码来源:ContextControllerInitTerm.java

示例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);
}
 
开发者ID:espertechinc,项目名称:esper,代码行数:13,代码来源:SupportSelectorFilteredInitTerm.java

示例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);
}
 
开发者ID:espertechinc,项目名称:esper,代码行数:8,代码来源:ContextControllerInitTermFactoryBase.java

示例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);
}
 
开发者ID:mobile-event-processing,项目名称:Asper,代码行数:13,代码来源:SupportSelectorFilteredInitTerm.java


注:本文中的com.espertech.esper.client.context.ContextPartitionIdentifierInitiatedTerminated类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。