std::basic_osyncstream
Defined in header <syncstream>
|
||
template< class CharT, |
(since C++20) | |
The class template std::basic_osyncstream
is a convenience wrapper for std::basic_syncbuf. It provides a mechanism to synchronize threads writing to the same stream.
It can be used with a named variable:
as well as with a temporary:
std::osyncstream(std::cout) << "Hello, " << "World!" << '\n';
It provides the guarantee that all output made to the same final destination buffer (std::cout in the examples above) will be free of data races and will not be interleaved or garbled in any way, as long as every write to that final destination buffer is made through (possibly different) instances of std::basic_osyncstream
.
Typical implementation of std::basic_osyncstream
holds only one member: the wrapped std::basic_syncbuf.
Inheritance diagram
Several typedefs for common character types are provided:
Defined in header
<syncstream> | |
Type | Definition |
std::osyncstream
|
std::basic_osyncstream<char> |
std::wosyncstream
|
std::basic_osyncstream<wchar_t> |
Contents |
[edit] Member types
Member type | Definition |
char_type
|
CharT
|
traits_type
|
Traits ; the program is ill-formed if Traits::char_type is not CharT .
|
int_type
|
Traits::int_type
|
pos_type
|
Traits::pos_type
|
off_type
|
Traits::off_type
|
allocator_type
|
Allocator
|
streambuf_type
|
std::basic_streambuf<CharT, Traits> |
syncbuf_type
|
std::basic_syncbuf<CharT, Traits, Allocator> |
[edit] Member functions
constructs a basic_osyncstream object (public member function) | |
assigns a basic_osyncstream object (public member function) | |
destroys the basic_osyncstream and emits its internal buffer (public member function) | |
obtains a pointer to the underlying basic_syncbuf (public member function) | |
obtains a pointer to the final destination stream buffer (public member function) | |
calls emit() on the underlying basic_syncbuf to transmit its internal data to the final destination (public member function) |
Inherited from std::basic_ostream
Member functions
Formatted output | |
inserts formatted data (public member function of std::basic_ostream<CharT,Traits> )
| |
Unformatted output | |
inserts a character (public member function of std::basic_ostream<CharT,Traits> )
| |
|