aboutsummaryrefslogtreecommitdiffstats
path: root/documentapi/src/vespa/documentapi/messagebus/messages/getbucketstatereply.cpp
blob: eeaec2c0fc60834e34c1437e6b68208a5d9c9120 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Yahoo. 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() { }

}