/* * ************************************************************************************* * Copyright (C) 2008 EsperTech, Inc. All rights reserved. * * http://esper.codehaus.org * * http://www.espertech.com * * ---------------------------------------------------------------------------------- * * The software in this package is published under the terms of the GPL license * * a copy of which has been included with this distribution in the license.txt file. * * ************************************************************************************* */ package com.espertech.esper.epl.agg.service; import com.espertech.esper.epl.agg.aggregator.AggregationMethod; /** * A row in aggregation state. */ public class AggregationMethodRow { private long refcount; private AggregationMethod[] methods; /** * Ctor. * @param refcount number of items in state * @param methods aggregations */ public AggregationMethodRow(long refcount, AggregationMethod[] methods) { this.refcount = refcount; this.methods = methods; } /** * Returns number of data points. * @return data points */ public long getRefcount() { return refcount; } /** * Returns aggregation state. * @return state */ public AggregationMethod[] getMethods() { return methods; } /** * Increase number of data points by one. */ public void increaseRefcount() { refcount++; } /** * Decrease number of data points by one. */ public void decreaseRefcount() { refcount--; } }