aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/reference/i_pending_gid_to_lid_changes.h
blob: 1c081bc0afdbfb99013dbbf2aa5e5d2c230b0556 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

namespace proton {

/*
 * Interface class for a container of gid to lid changes awaiting a
 * force commit.
 */
class IPendingGidToLidChanges
{
public:
    virtual ~IPendingGidToLidChanges() = default;
    virtual void notify_done() = 0;
};

}