Files
scylladb/sstables/prepended_input_stream.hh
Avi Kivity 0ae22a09d4 LICENSE: Update to version 1.1
Updated terms of non-commercial use (must be a never-customer).
2026-04-12 19:46:33 +03:00

22 lines
641 B
C++

/*
* Copyright (C) 2017-present ScyllaDB
*/
/*
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.1
*/
#pragma once
#include <seastar/core/iostream.hh>
#include <seastar/core/temporary_buffer.hh>
#include "seastarx.hh"
/// \brief Creates an input_stream to read from a supplied buffer first
/// and then use a supplied data source
///
/// \param buf Buffer with data to be read first
/// \param ds Data source that is used for reading data once the prepending buffer is consumed in full
/// \return resulting input stream
input_stream<char> make_prepended_input_stream(temporary_buffer<char>&& buf, data_source&& ds);