aboutsummaryrefslogtreecommitdiffstats
path: root/messagebus/src/vespa/messagebus/emptyreply.cpp
blob: ab742d5068c6203a17b5eb2d6a32f25206e9ea38 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include "emptyreply.h"

namespace {

static mbus::string EmptyReplyProtocolName = "";

} // namespace anon

namespace mbus {

EmptyReply::EmptyReply() { }

const string &
EmptyReply::getProtocol() const {
    return EmptyReplyProtocolName;
}

uint32_t
EmptyReply::getType() const {
    return 0;
}

} // namespace mbus