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::parser::parser (5 of 5 overloads)

Construct a parser from another parser, changing the Body type.

Synopsis
template<
    class OtherBody,
    class... Args>
parser(
    parser< isRequest, OtherBody, Allocator >&& parser,
    Args&&... args);
Description

This constructs a new parser by move constructing the header from another parser with a different body type. The constructed-from parser must not have any parsed body octets or initialized BodyReader, otherwise an exception is generated.

Example
// Deferred body type commitment
request_parser<empty_body> req0;
...
request_parser<string_body> req{std::move(req0)};

If an exception is thrown, the state of the constructed-from parser is undefined.

Parameters

Name

Description

parser

The other parser to construct from. After this call returns, the constructed-from parser may only be destroyed.

args

Optional arguments forwarded to the message constructor.

Exceptions

Type

Thrown On

std::invalid_argument

Thrown when the constructed-from parser has already initialized a body reader.

Remarks

This function participates in overload resolution only if the other parser uses a different body type.


PrevUpHomeNext