aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/main/java/com/yahoo/document/serialization/DocumentSerializer.java
blob: 9d52bc4aead8eede606b50faf672e194b9dfdc54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.document.serialization;

import com.yahoo.io.GrowableByteBuffer;

/**
 * Interface for serializing documents.
 *
 * A particular instance of this class is tied to a version of the document format.
 *
 * @author geirst
 */
public interface DocumentSerializer extends DocumentWriter, SpanNodeWriter, AnnotationWriter, SpanTreeWriter, DocumentUpdateWriter {

    /**
     * Returns the underlying buffer used for serialization.
     */
    public GrowableByteBuffer getBuf();
}