aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/feedoperation/putoperation.h
blob: b24e3298ffed64a2a8e001387d2ab0585eb26896 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include "documentoperation.h"

namespace proton {

class PutOperation : public DocumentOperation
{
    using DocumentSP = std::shared_ptr<document::Document>;
    DocumentSP _doc;

public:
    PutOperation();
    PutOperation(document::BucketId bucketId, Timestamp timestamp, DocumentSP doc);
    ~PutOperation() override;
    const DocumentSP &getDocument() const { return _doc; }
    void assertValid() const;
    void serialize(vespalib::nbostream &os) const override;
    void deserialize(vespalib::nbostream &is, const document::DocumentTypeRepo &repo) override;
    void deserializeDocument(const document::DocumentTypeRepo &repo);
    vespalib::string toString() const override;
};

} // namespace proton