aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/operationdonecontext.cpp
blob: 53b12972c440d9067bb95329cdc223c8a0c46aa7 (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 "operationdonecontext.h"

namespace proton {

OperationDoneContext::OperationDoneContext(IDestructorCallback::SP token)
    : _token(std::move(token))
{
}

OperationDoneContext::~OperationDoneContext() = default;

}  // namespace proton