forked from scylladb/scylladb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuffer_input_stream.hh
28 lines (23 loc) · 937 Bytes
/
buffer_input_stream.hh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
* Copyright (C) 2017-present ScyllaDB
*/
/*
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
*/
#pragma once
#include <seastar/core/iostream.hh>
#include <seastar/core/temporary_buffer.hh>
#include <seastar/util/noncopyable_function.hh>
#include "seastarx.hh"
/// \brief Creates an input_stream to read from a supplied buffer
///
/// \param buf Buffer to return from the stream while reading
/// \return resulting input stream
input_stream<char> make_buffer_input_stream(temporary_buffer<char>&& buf);
/// \brief Creates an input_stream to read from a supplied buffer
///
/// \param buf Buffer to return from the stream while reading
/// \param limit_generator Generates limits of chunk sizes
/// \return resulting input stream
input_stream<char> make_buffer_input_stream(temporary_buffer<char>&& buf,
seastar::noncopyable_function<size_t()>&& limit_generator);