aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/bmcluster/bm_storage_link_context.h
blob: cb20fb58518b2da5a2a5a55c143e3b175049bc8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

namespace search::bmcluster {

class BmStorageLink;

/*
 * This context is initialized by BmStorageChainBuilder.
 */
struct BmStorageLinkContext
{
    BmStorageLink* bm_link;
    BmStorageLinkContext() noexcept
        : bm_link(nullptr)
    {
    }
    ~BmStorageLinkContext() = default;
};

}