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

#pragma once

namespace proton {

class IBucketStateChangedHandler;

/**
 * Interface used to request notification when bucket state has changed.
 */
class IBucketStateChangedNotifier
{
public:
    virtual void addBucketStateChangedHandler(IBucketStateChangedHandler *handler) = 0;
    virtual void removeBucketStateChangedHandler(IBucketStateChangedHandler *handler) = 0;
    
    virtual ~IBucketStateChangedNotifier() = default;
};

}