aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/fs4/DocsumPacket.java
blob: 499efb2504e415ba875dd1ae6d9e714dae8d49fb (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.fs4;

/**
 * An "extended query result" packet. This is the query result
 * packets used today, they allow more flexible sets of parameters
 * to be shipped with query results. This packet can be decoded only.
 *
 * @author  bratseth
 */
public class DocsumPacket {

    private byte[] data;

    /**
     * Constructor used by streaming search
     */
    public DocsumPacket(byte[] buffer) {
        data = buffer.clone();
    }


    public byte[] getData() { return data; }

    public String toString() {
        return "docsum packet size: " + (data==null ? "(no data)" : data.length + " bytes") + " ]";
    }

}