aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/main/java/com/yahoo/searchlib/aggregation/hll/Sketch.java
blob: f37f7d4effd857e0a9334a1704b58de26eed06e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.searchlib.aggregation.hll;

import com.yahoo.vespa.objects.Identifiable;

/**
 * Represents a sketch. All sketch types must provide a merge method.
 *
 * @param <T> The type of the sub-class.
 */
public abstract class Sketch<T extends Sketch<T>> extends Identifiable {
    /**
     * Merge content of other into 'this'.
     *
     * @param other Other sketch
     */
    public abstract void merge(T other);

    /**
     * Aggregates the hash values.
     *
     * @param hashValues Provides an iterator for the hash values
     */
    public abstract void aggregate(Iterable<Integer> hashValues);

     /**
     * Aggregates the hash value.
     *
     * @param hash Hash value.
     */
    public abstract void aggregate(int hash);
}