aboutsummaryrefslogtreecommitdiffstats
path: root/documentapi/src/vespa/documentapi/messagebus/messages/getbucketstatereply.cpp
blob: 2aac34c444fe6956dbb926d859df082dd4dc7e4f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include "getbucketstatereply.h"
#include <vespa/documentapi/messagebus/documentprotocol.h>

namespace documentapi {

GetBucketStateReply::GetBucketStateReply() :
    DocumentReply(DocumentProtocol::REPLY_GETBUCKETSTATE),
    _state()
{ }

GetBucketStateReply::GetBucketStateReply(std::vector<DocumentState> &state) :
    DocumentReply(DocumentProtocol::REPLY_GETBUCKETSTATE),
    _state()
{
    _state.swap(state);
}

GetBucketStateReply::~GetBucketStateReply() { }

}