aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storage/distributor/statusdelegator.h
blob: 3001f135964b28baff6ae09ae09d0ebfdea436f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

namespace storage::distributor {

struct DelegatedStatusRequest;

class StatusDelegator
{
public:
    virtual ~StatusDelegator() = default;

    virtual bool handleStatusRequest(const DelegatedStatusRequest& request) const = 0;
};

} // storage::distributor