Files
scylladb/streaming/stream_detail.hh
Botond Dénes b029bd3db7 tree: remove mutation_reader.hh include
In most files it was unused. We should move these to the patch which
moved out the last interesting reader from mutation_reader.hh (and added
the corresponding new header include) but its probably not worth the
effort.
Some other files still relied on mutation_reader.hh to provide reader
concurrency semaphore and some other misc reader related definitions.
2022-03-30 15:42:51 +03:00

31 lines
509 B
C++

/*
*
* Modified by ScyllaDB
* Copyright (C) 2015-present ScyllaDB
*/
/*
* SPDX-License-Identifier: (AGPL-3.0-or-later and Apache-2.0)
*/
#pragma once
#include "query-request.hh"
#include "utils/UUID.hh"
#include <vector>
#include "range.hh"
#include "dht/i_partitioner.hh"
namespace streaming {
struct stream_detail {
using UUID = utils::UUID;
UUID cf_id;
stream_detail() = default;
stream_detail(UUID cf_id_)
: cf_id(std::move(cf_id_)) {
}
};
} // namespace streaming