|  | Home | Libraries | People | FAQ | More | 
Write a complete message to a stream.
          Defined in header <boost/beast/http/write.hpp>
        
template< class SyncWriteStream, bool isRequest, class Body, class Fields> std::size_t write( SyncWriteStream& stream, message< isRequest, Body, Fields >& msg, error_code& ec);
This function is used to write a complete message to a stream using HTTP/1. The call will block until one of the following conditions is true:
          This operation is implemented in terms of one or more calls to the stream's
          write_some function. The
          algorithm will use a temporary http::serializer with an empty chunk
          decorator to produce buffers.
        
          This function only participates in overload resolution if http::is_mutable_body_writer for Body
          returns true.
        
| Name | Description | 
|---|---|
| 
                     | The stream to which the data is to be written. The type must support the SyncWriteStream concept. | 
| 
                     | The message to write. | 
| 
                     | Set to the error, if any occurred. | 
The number of bytes written to the stream.
          Convenience header <boost/beast/http.hpp>