aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/bmcluster/bm_storage_link_context.h
blob: 0f333c1fd5c5facdae2525360a27fa842c435084 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright Vespa.ai. 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;
};

}