aboutsummaryrefslogtreecommitdiffstats
path: root/persistence/src/vespa/persistence/spi/abstractpersistenceprovider.cpp
blob: 23a8f600024a33e97e6dbfe9432d755041ad996c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "abstractpersistenceprovider.h"
#include <vespa/document/datatype/documenttype.h>
#include <vespa/document/update/documentupdate.h>
#include <vespa/document/fieldset/fieldsets.h>
#include <vespa/document/fieldvalue/document.h>
#include <vespa/vespalib/util/idestructorcallback.h>

namespace storage::spi {

RemoveResult
AbstractPersistenceProvider::removeIfFound(const Bucket& b, Timestamp timestamp,
                                           const DocumentId& id, Context& context)
{
    return remove(b, timestamp, id, context);
}

void
AbstractPersistenceProvider::removeIfFoundAsync(const Bucket& b, Timestamp timestamp,
                                                const DocumentId& id, Context& context, OperationComplete::UP onComplete)
{
    removeAsync(b, timestamp, id, context, std::move(onComplete));
}

BucketIdListResult
AbstractPersistenceProvider::getModifiedBuckets(BucketSpace) const
{
    BucketIdListResult::List list;
    return BucketIdListResult(list);
}

}