aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/memoryindex/push_context.cpp
blob: 5a4a773a6f5a3b8acf975f160d47a6c750c7e79a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "push_context.h"

namespace search::memoryindex {

PushContext::PushContext(vespalib::ISequencedTaskExecutor::ExecutorId id)
    : BundledFieldsContext(id)
{
}

PushContext::~PushContext() = default;

}