aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/i_proton_disk_layout.h
blob: ae4b7f67470b118af5bbd09401c6ae4d8a508d45 (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

#include <set>

namespace proton {

class DocTypeName;

/**
 * Interface class with utility functions for handling the disk
 * directory layout for proton instance.
 */
class IProtonDiskLayout
{
public:
    virtual ~IProtonDiskLayout() = default;
    virtual void remove(const DocTypeName &docTypeName) = 0;
    virtual void initAndPruneUnused(const std::set<DocTypeName> &docTypeNames) = 0;
};

} // namespace proton