aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storage/storageserver/rpc/rpc_target_pool.cpp
blob: 0c338a4ff5daf2c60da1aadffaa2ae1ad7dca4cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "rpc_target.h"
#include "rpc_target_pool.h"

namespace storage::rpc {

RpcTargetPool::RpcTargetPool(RpcTargetVector&& targets, const vespalib::string& spec, uint32_t slobrok_gen)
    : _targets(std::move(targets)),
      _spec(spec),
      _slobrok_gen(slobrok_gen)
{
}

std::shared_ptr<RpcTarget>
RpcTargetPool::get_target(uint64_t bucket_id) const
{
    return _targets[bucket_id % _targets.size()];
}

}