aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storage/storageserver/rpc/rpc_target.h
blob: 502d35d206aac77731196160aabcc33f37161ccd (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

#include <vespa/vespalib/stllike/string.h>

class FRT_Target;

namespace storage::rpc {

/**
 * Simple wrapper API to access a FRT_Target.
 */
class RpcTarget {
public:
    virtual ~RpcTarget() = default;
    virtual FRT_Target* get() noexcept = 0;
    virtual bool is_valid() const noexcept = 0;
    virtual const vespalib::string& spec() const noexcept = 0;
};

}