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