aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/tests/distributor/distributor_message_sender_stub.cpp
blob: 725773312da2a1dc4bcff75428782d7cb58eedd8 (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.

#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(),
      _pending_message_tracker(nullptr),
      _operation_sequencer(nullptr)
{}

DistributorMessageSenderStub::~DistributorMessageSenderStub() = default;

}