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

#include "removedocumentsoperation.h"
#include <vespa/document/bucket/bucketid.h>

namespace proton {

class DeleteBucketOperation : public RemoveDocumentsOperation
{
    document::BucketId   _bucketId;

public:
    DeleteBucketOperation();
    DeleteBucketOperation(const document::BucketId &bucketId);
    ~DeleteBucketOperation() override = default;
    const document::BucketId &getBucketId() const { return _bucketId; }
    virtual void serialize(vespalib::nbostream &os) const override;
    virtual void deserialize(vespalib::nbostream &is,
                             const document::DocumentTypeRepo &repo) override;
    virtual vespalib::string toString() const override;
};

} // namespace proton