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

#include "documentreply.h"

namespace documentapi {

/**
 * Common base class for replies that indicate that a document was routed
 * to some recipient. Does not imply that the reply contains no errors!
 */
class DocumentAcceptedReply : public DocumentReply {
public:
    DocumentAcceptedReply(uint32_t type)
        : DocumentReply(type)
    {}
};

} // ns documentapi