aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storage/storageserver/rpc/rpc_target_factory.h
blob: a6ff0d48ef645a0abc5a59edb620936dfb7c965c (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>
#include <memory>

namespace storage::rpc {

class RpcTarget;

/**
 * Factory for creating instances of RpcTarget based on a connection spec.
 */
class RpcTargetFactory {
public:
    virtual ~RpcTargetFactory() = default;
    virtual std::unique_ptr<RpcTarget> make_target(const vespalib::string& connection_spec) const = 0;
};

}