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

http::vector_body

A Body using std::vector

Synopsis

Defined in header <boost/beast/http/vector_body.hpp>

template<
    class T,
    class Allocator = std::allocator<T>>
struct vector_body
Types

Name

Description

reader

The algorithm for parsing the body.

value_type

The type of container used for the body.

writer

The algorithm for serializing the body.

Static Members

Name

Description

size

Returns the payload size of the body.

Description

This body uses std::vector as a memory-based container for holding message payloads. Messages using this body type may be serialized and parsed.


PrevUpHomeNext