summaryrefslogtreecommitdiffstats
path: root/searchcorespi/src/vespa/searchcorespi/index/memory_index_stats.h
blob: 7508ecef3cc9b34f9cafe11d9eeb8426f75ad875 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include "index_searchable_stats.h"

namespace searchcorespi {
namespace index {

struct IMemoryIndex;

/**
 * Information about a memory index usable by state explorer.
 */
class MemoryIndexStats : public IndexSearchableStats {
public:
    MemoryIndexStats();
    MemoryIndexStats(const IMemoryIndex &index);
    ~MemoryIndexStats();
};

} // namespace searchcorespi::index
} // namespace searchcorespi