aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/tensor/nearest_neighbor_index_loader.h
blob: 5ac57d9a123bbe3ba2a578a85d551fb198a1fa4c (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

namespace search::tensor {

/**
 * Interface that is used to load a nearest neighbor index from binary form.
 */
class NearestNeighborIndexLoader {
public:
    virtual ~NearestNeighborIndexLoader() {}

    /**
     * Loads the next part of the index (e.g. the node corresponding to a given document)
     * and returns whether there is more data to load.
     *
     * This might throw std::runtime_error.
     */
    virtual bool load_next() = 0;
};

}