Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Streams

A stream in the context of Beast and networking, represents a full-duplex connection between two programs or hosts, where data represented as bytes may be received reliably in the same order they were written. Streams may support any combination of synchronous and/or asynchronous reading and writing.

Stream concepts are based on named requirements in networking:

Stream

A type modeling Stream meets either or both of the following requirements:

AsyncStream

A type modeling AsyncStream meets the following requirements:

SyncStream

A type modeling SyncStream meets the following requirements:


PrevUpHomeNext