...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
A message body represented by a file on the filesystem.
Defined in header <boost/beast/http/basic_file_body.hpp>
template< class File> struct basic_file_body
Name |
Description |
---|---|
The type of File this body uses. |
|
Algorithm for storing buffers when parsing. |
|
The type of the |
|
Algorithm for retrieving buffers when serializing. |
Name |
Description |
---|---|
Returns the size of the body. |
Messages with this type have bodies represented by a file on the file system. When parsing a message using this body type, the data is stored in the file pointed to by the path, which must be writable. When serializing, the implementation will read the file and present those octets as the body content. This may be used to serve content from a directory as part of a web service.
Type |
Description |
---|---|
|
The implementation to use for accessing files. This type must meet the requirements of File. |