aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storage/distributor/outdated_nodes_map.h
blob: 08a58aa96dd48e83539c135c35fbb4d62bee95e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include "outdated_nodes.h"
#include <vespa/document/bucket/bucketspace.h>
#include <unordered_map>

namespace storage::distributor::dbtransition {

using OutdatedNodesMap = std::unordered_map<document::BucketSpace, OutdatedNodes, document::BucketSpace::hash>;

}