aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storage/common/messagesender.h
blob: 57db86e2258d066483362b60d0a9a4188defdbaf (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
/**
 * @class storage::MessageSender
 * @ingroup common
 *
 * @brief Interface to implement for classes which send messages on for others.
 *
 * Used for instance by filestor manager. Filestor threads needs to send
 * messages through the filemanager. The filestor manager thus implements this
 * interface and gives to the filestor thread.
 *
 * @author H�kon Humberset
 * @date 2006-03-22
 * @version $Id$
 */

#pragma once

#include <memory>

namespace storage::api {
    class StorageCommand;
    class StorageReply;
    class StorageMessage;
}

namespace storage {

struct MessageSender {
    virtual ~MessageSender() = default;

    virtual void sendCommand(const std::shared_ptr<api::StorageCommand>&) = 0;
    virtual void sendReply(const std::shared_ptr<api::StorageReply>&) = 0;
    // By calling this you certify that it can continue in same thread or be dispatched.
    virtual void sendReplyDirectly(const std::shared_ptr<api::StorageReply>&);

    void send(const std::shared_ptr<api::StorageMessage>&);
};

struct ChainedMessageSender {
    virtual ~ChainedMessageSender() = default;
    virtual void sendUp(const std::shared_ptr<api::StorageMessage>&) = 0;
    virtual void sendDown(const std::shared_ptr<api::StorageMessage>&) = 0;
};

/**
 * Interface to send messages "up" that bypasses message tracking.
 */
class NonTrackingMessageSender {
public:
    virtual ~NonTrackingMessageSender() = default;
    virtual void send_up_without_tracking(const std::shared_ptr<api::StorageMessage>&) = 0;
};

} // storage