aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/bucketdb/i_bucket_create_listener.h
blob: 86a2ecf4a267ff6f445f0daf8b20faf37fe656b7 (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
24
25
26
27
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

namespace document { class BucketId; }

namespace proton::bucketdb {

class Guard;

/**
 * Interface class used by a registered listener to get notifications about
 * non-empty buckets created due to split/join operations.
 */
class IBucketCreateListener
{
public:
    virtual ~IBucketCreateListener() = default;

    /**
     * Signal that the given bucket has been created due to split/join
     * operation.
     */
    virtual void notifyCreateBucket(const Guard & guard, const document::BucketId &bucket) = 0;
};

}