本文整理汇总了Java中com.espertech.esper.collection.SortedRefCountedSet类的典型用法代码示例。如果您正苦于以下问题:Java SortedRefCountedSet类的具体用法?Java SortedRefCountedSet怎么用?Java SortedRefCountedSet使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
SortedRefCountedSet类属于com.espertech.esper.collection包,在下文中一共展示了SortedRefCountedSet类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: rowMemberCodegen
import com.espertech.esper.collection.SortedRefCountedSet; //导入依赖的package包/类
public static void rowMemberCodegen(boolean distinct, int column, CodegenCtor ctor, CodegenMembersColumnized membersColumnized) {
membersColumnized.addMember(column, SortedRefCountedSet.class, "refSet");
ctor.getBlock().assignRef(refCol("refSet", column), newInstance(SortedRefCountedSet.class));
if (distinct) {
membersColumnized.addMember(column, RefCountedSet.class, "distinctSet");
ctor.getBlock().assignRef(refCol("distinctSet", column), newInstance(RefCountedSet.class));
}
}
示例2: AggregatorMinMax
import com.espertech.esper.collection.SortedRefCountedSet; //导入依赖的package包/类
/**
* Ctor.
*
* @param minMaxTypeEnum - enum indicating to return minimum or maximum values
* @param returnType - is the value type returned by aggregator
*/
public AggregatorMinMax(MinMaxTypeEnum minMaxTypeEnum, Class returnType)
{
this.minMaxTypeEnum = minMaxTypeEnum;
this.returnType = returnType;
this.refSet = new SortedRefCountedSet<Object>();
}
示例3: getRefSet
import com.espertech.esper.collection.SortedRefCountedSet; //导入依赖的package包/类
public SortedRefCountedSet<Object> getRefSet() {
return refSet;
}
示例4: AggregatorMinMax
import com.espertech.esper.collection.SortedRefCountedSet; //导入依赖的package包/类
/**
* Ctor.
*
* @param minMaxTypeEnum - enum indicating to return minimum or maximum values
*/
public AggregatorMinMax(MinMaxTypeEnum minMaxTypeEnum) {
this.minMaxTypeEnum = minMaxTypeEnum;
this.refSet = new SortedRefCountedSet<Object>();
}