aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/tests/distributor/distributor_message_sender_stub.cpp
blob: df894f1bb2c0512fe452c8df4c9f0f297d25a0bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2019 Oath Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "distributor_message_sender_stub.h"
#include <vespa/storageapi/messageapi/storagecommand.h>
#include <vespa/storageapi/messageapi/storagereply.h>
#include <string>
#include <sstream>
#include <stdexcept>

namespace storage {

DistributorMessageSenderStub::DistributorMessageSenderStub()
    : _stub_impl(),
      _cluster_name("storage"),
      _pending_message_tracker(nullptr)
{}

DistributorMessageSenderStub::~DistributorMessageSenderStub() = default;

}