summaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/removedonecontext.cpp
blob: 558a57bb8c6606401508fec26bde7d068239104d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "removedonecontext.h"

namespace proton {

RemoveDoneContext::RemoveDoneContext(IDestructorCallback::SP token, IPendingLidTracker::Token uncommitted)
    : OperationDoneContext(std::move(token)),
      _uncommitted(std::move(uncommitted))
{
}

RemoveDoneContext::~RemoveDoneContext()
{
}

}  // namespace proton