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


Java OutputAttributeAggregator类代码示例

本文整理汇总了Java中org.wso2.siddhi.core.query.selector.attribute.handler.OutputAttributeAggregator的典型用法代码示例。如果您正苦于以下问题:Java OutputAttributeAggregator类的具体用法?Java OutputAttributeAggregator怎么用?Java OutputAttributeAggregator使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


OutputAttributeAggregator类属于org.wso2.siddhi.core.query.selector.attribute.handler包,在下文中一共展示了OutputAttributeAggregator类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: process

import org.wso2.siddhi.core.query.selector.attribute.handler.OutputAttributeAggregator; //导入依赖的package包/类
protected Object process(AtomicEvent event, OutputAttributeAggregator outputAttributeAggregator) {
    if (size > 1) {
        Object[] data = new Object[expressionExecutors.size()];
        for (int i = 0, size = data.length; i < size; i++) {
            data[i] = expressionExecutors.get(i).execute(event);
        }
        if (event instanceof RemoveStream) {
            return outputAttributeAggregator.processRemove(data);
        } else {
            return outputAttributeAggregator.processAdd(data);
        }
    } else {
        if (event instanceof RemoveStream) {
            return outputAttributeAggregator.processRemove(expressionExecutors.get(0).execute(event));
        } else {
            return outputAttributeAggregator.processAdd(expressionExecutors.get(0).execute(event));
        }
    }
}
 
开发者ID:redBorder,项目名称:rb-bi,代码行数:20,代码来源:AbstractAggregationAttributeProcessor.java

示例2: createSumAggregator

import org.wso2.siddhi.core.query.selector.attribute.handler.OutputAttributeAggregator; //导入依赖的package包/类
public static OutputAttributeAggregator createSumAggregator(Attribute.Type[] types) {
    if (types.length > 1) {
        throw new QueryCreationException("Sum can only have one parameter");
    }
    Attribute.Type type = types[0];
    switch (type) {
        case STRING:
            throw new OperationNotSupportedException("Sum not supported for string");
        case INT:
            return new SumOutputAttributeAggregatorInt();
        case LONG:
            return new SumOutputAttributeAggregatorLong();
        case FLOAT:
            return new SumOutputAttributeAggregatorFloat();
        case DOUBLE:
            return new SumOutputAttributeAggregatorDouble();
        case BOOL:
            throw new OperationNotSupportedException("Sum not supported for bool");
    }
    throw new OperationNotSupportedException("Sum not supported for " + type);
}
 
开发者ID:redBorder,项目名称:rb-bi,代码行数:22,代码来源:OutputAttributeHandlerParser.java

示例3: createAvgAggregator

import org.wso2.siddhi.core.query.selector.attribute.handler.OutputAttributeAggregator; //导入依赖的package包/类
public static OutputAttributeAggregator createAvgAggregator(Attribute.Type[] types) {
    if (types.length > 1) {
        throw new QueryCreationException("Avg can only have one parameter");
    }
    Attribute.Type type = types[0];
    switch (type) {
        case STRING:
            throw new OperationNotSupportedException("Avg not supported for string");
        case INT:
            return new AvgOutputAttributeAggregatorInt();
        case LONG:
            return new AvgOutputAttributeAggregatorLong();
        case FLOAT:
            return new AvgOutputAttributeAggregatorFloat();
        case DOUBLE:
            return new AvgOutputAttributeAggregatorDouble();
        case BOOL:
            throw new OperationNotSupportedException("Avg not supported for bool");
    }
    throw new OperationNotSupportedException("Avg not supported for " + type);
}
 
开发者ID:redBorder,项目名称:rb-bi,代码行数:22,代码来源:OutputAttributeHandlerParser.java

示例4: createMaxAggregator

import org.wso2.siddhi.core.query.selector.attribute.handler.OutputAttributeAggregator; //导入依赖的package包/类
public static OutputAttributeAggregator createMaxAggregator(Attribute.Type[] types) {
    if (types.length > 1) {
        throw new QueryCreationException("Max can only have one parameter");
    }
    Attribute.Type type = types[0];
    switch (type) {
        case STRING:
            throw new OperationNotSupportedException("Max not supported for string");
        case INT:
            return new MaxOutputAttributeAggregatorInt();
        case LONG:
            return new MaxOutputAttributeAggregatorLong();
        case FLOAT:
            return new MaxOutputAttributeAggregatorFloat();
        case DOUBLE:
            return new MaxOutputAttributeAggregatorDouble();
        case BOOL:
            throw new OperationNotSupportedException("Max not supported for bool");
    }
    throw new OperationNotSupportedException("Max not supported for " + type);
}
 
开发者ID:redBorder,项目名称:rb-bi,代码行数:22,代码来源:OutputAttributeHandlerParser.java

示例5: createMinAggregator

import org.wso2.siddhi.core.query.selector.attribute.handler.OutputAttributeAggregator; //导入依赖的package包/类
public static OutputAttributeAggregator createMinAggregator(Attribute.Type[] types) {
    if (types.length > 1) {
        throw new QueryCreationException("Min can only have one parameter");
    }
    Attribute.Type type = types[0];
    switch (type) {
        case STRING:
            throw new OperationNotSupportedException("Min not supported for string");
        case INT:
            return new MinOutputAttributeAggregatorInt();
        case LONG:
            return new MinOutputAttributeAggregatorLong();
        case FLOAT:
            return new MinOutputAttributeAggregatorFloat();
        case DOUBLE:
            return new MinOutputAttributeAggregatorDouble();
        case BOOL:
            throw new OperationNotSupportedException("Min not supported for bool");
    }
    throw new OperationNotSupportedException("Min not supported for " + type);
}
 
开发者ID:redBorder,项目名称:rb-bi,代码行数:22,代码来源:OutputAttributeHandlerParser.java

示例6: process

import org.wso2.siddhi.core.query.selector.attribute.handler.OutputAttributeAggregator; //导入依赖的package包/类
protected Object process(StreamEvent event, OutputAttributeAggregator outputAttributeAggregator) {
    if (size > 1) {
        Object[] data = new Object[expressionExecutors.size()];
        for (int i = 0, size = data.length; i < size; i++) {
            data[i] = expressionExecutors.get(i).execute(event);
        }
        if (event instanceof RemoveStream) {
            return outputAttributeAggregator.processRemove(data);
        } else {
            return outputAttributeAggregator.processAdd(data);
        }
    } else {
        if (event instanceof RemoveStream) {
            return outputAttributeAggregator.processRemove(expressionExecutors.get(0).execute(event));
        } else {
            return outputAttributeAggregator.processAdd(expressionExecutors.get(0).execute(event));
        }
    }
}
 
开发者ID:sacjaya,项目名称:siddhi-3,代码行数:20,代码来源:AbstractAggregationAttributeProcessor.java

示例7: currentState

import org.wso2.siddhi.core.query.selector.attribute.handler.OutputAttributeAggregator; //导入依赖的package包/类
public Object[] currentState() {
    Map<String, OutputAttributeAggregator> tempMap = new HashMap<String, OutputAttributeAggregator>();
    for (Map.Entry<String, OutputAttributeAggregator> entry : distributedAggregatorMap.entrySet()) {
        tempMap.put(entry.getKey(), entry.getValue());
    }
    //todo may be we throw an error saying we don't support for distributed cases
    return new Object[]{tempMap};
}
 
开发者ID:redBorder,项目名称:rb-bi,代码行数:9,代码来源:DistributedGroupByAggregationAttributeProcessor.java

示例8: unlock

import org.wso2.siddhi.core.query.selector.attribute.handler.OutputAttributeAggregator; //导入依赖的package包/类
@Override
    public synchronized void unlock() {
        if (lockedAcquired) {
            for (Map.Entry<String, OutputAttributeAggregator> entry : tempAggregatorMap.entrySet()) {
                distributedAggregatorMap.putAsync(entry.getKey(), entry.getValue());
            }
            tempAggregatorMap.clear();
            lockedAcquired = false;
//            distributedAggregatorMap.unlockMap();
            lock.unlock();
        }
    }
 
开发者ID:redBorder,项目名称:rb-bi,代码行数:13,代码来源:DistributedGroupByAggregationAttributeProcessor.java

示例9: currentState

import org.wso2.siddhi.core.query.selector.attribute.handler.OutputAttributeAggregator; //导入依赖的package包/类
@Override
protected Object[] currentState() {
    distributedAggregatorMap.lock(elementId);
    OutputAttributeAggregator currentOutputAttributeAggregator = (OutputAttributeAggregator) distributedAggregatorMap.get(elementId);
    Object[] data = new Object[]{currentOutputAttributeAggregator};
    distributedAggregatorMap.unlock(elementId);
    return data;
}
 
开发者ID:redBorder,项目名称:rb-bi,代码行数:9,代码来源:DistributedAggregationAttributeProcessor.java

示例10: lock

import org.wso2.siddhi.core.query.selector.attribute.handler.OutputAttributeAggregator; //导入依赖的package包/类
@Override
public synchronized void lock() {
    distributedAggregatorMap.lock(elementId);
    lockedAcquired = true;
    try {
        outputAttributeAggregator = (OutputAttributeAggregator) distributedAggregatorMap.getAsync(elementId).get();
    } catch (Exception e) {
        log.error(e);
    }
}
 
开发者ID:redBorder,项目名称:rb-bi,代码行数:11,代码来源:DistributedAggregationAttributeProcessor.java

示例11: process

import org.wso2.siddhi.core.query.selector.attribute.handler.OutputAttributeAggregator; //导入依赖的package包/类
public synchronized Object process(AtomicEvent event, String key) {
    OutputAttributeAggregator currentOutputAttributeAggregator = aggregatorMap.get(key);
    if (currentOutputAttributeAggregator == null) {
        currentOutputAttributeAggregator = sampleOutputAttributeAggregator.newInstance();
        siddhiContext.addEternalReferencedHolder(currentOutputAttributeAggregator);
        aggregatorMap.put(key, currentOutputAttributeAggregator);
    }
    return process(event, currentOutputAttributeAggregator);
}
 
开发者ID:redBorder,项目名称:rb-bi,代码行数:10,代码来源:GroupByAttributeAggregatorProcessor.java

示例12: createAttributeAggregator

import org.wso2.siddhi.core.query.selector.attribute.handler.OutputAttributeAggregator; //导入依赖的package包/类
@Override
public OutputAttributeAggregator createAttributeAggregator(Attribute.Type[] types) {
    return OutputAttributeHandlerParser.createMinAggregator(types);
}
 
开发者ID:redBorder,项目名称:rb-bi,代码行数:5,代码来源:MinOutputAttributeAggregatorFactory.java

示例13: createAttributeAggregator

import org.wso2.siddhi.core.query.selector.attribute.handler.OutputAttributeAggregator; //导入依赖的package包/类
public OutputAttributeAggregator createAttributeAggregator(Attribute.Type[] types){
    return OutputAttributeHandlerParser.createAvgAggregator(types);
}
 
开发者ID:redBorder,项目名称:rb-bi,代码行数:4,代码来源:AvgOutputAttributeAggregatorFactory.java

示例14: createAttributeAggregator

import org.wso2.siddhi.core.query.selector.attribute.handler.OutputAttributeAggregator; //导入依赖的package包/类
@Override
public OutputAttributeAggregator createAttributeAggregator(Attribute.Type[] types) {
    return OutputAttributeHandlerParser.createMaxAggregator(types);
}
 
开发者ID:redBorder,项目名称:rb-bi,代码行数:5,代码来源:MaxOutputAttributeAggregatorFactory.java

示例15: createAttributeAggregator

import org.wso2.siddhi.core.query.selector.attribute.handler.OutputAttributeAggregator; //导入依赖的package包/类
public OutputAttributeAggregator createAttributeAggregator(Attribute.Type[] types) {
    return OutputAttributeHandlerParser.createCountAggregator(types);
}
 
开发者ID:redBorder,项目名称:rb-bi,代码行数:4,代码来源:CountOutputAttributeAggregatorFactory.java


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