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

#include "context.h"

namespace storage::spi {

Context::Context(Priority pri, int maxTraceLevel) noexcept
    : _priority(pri),
      _trace(maxTraceLevel),
      _readConsistency(ReadConsistency::STRONG)
{ }

Context::~Context() = default;

}