summaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storage/persistence/batched_message.h
blob: c23383edfdea0fc3914f16223348006efc80ebeb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.//
#pragma once

#include "shared_operation_throttler.h"
#include <memory>
#include <utility>

namespace storage {

namespace api { class StorageMessage; }

using BatchedMessage = std::pair<std::shared_ptr<api::StorageMessage>, ThrottleToken>;

}