aboutsummaryrefslogtreecommitdiffstats
path: root/vespaclient/src/vespa/vespaclient/vesparoute/mynetwork.h
blob: 85c481995cd6b848aa7b39d89a597dad51165c6a (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include <vespa/messagebus/network/rpcnetwork.h>

/**
 * Implements a dummy network on top of an rpc network, blocking anything from reaching the actual transmit
 * steps in the base class.
 */
class MyNetwork : public mbus::RPCNetwork {
private:
    std::vector<mbus::RoutingNode*> _nodes;

public:
    /**
     * Constructs a new network object.
     *
     * @param params The parameter object to pass to the rpc network.
     */
    MyNetwork(const mbus::RPCNetworkParams &params);

    // Overrides RPCNetwork.
    bool allocServiceAddress(mbus::RoutingNode &recipient) override;
    void freeServiceAddress(mbus::RoutingNode &recipient) override;
    void send(const mbus::Message &msg, const std::vector<mbus::RoutingNode*> &recipients) override;

    /**
     * Removes and returns the list of recipients that was most recently sent to.
     *
     * @param contexts The list to move the contexts to.
     */
    void removeNodes(std::vector<mbus::RoutingNode*> &nodes);
};