Fix handler parameter javadocs

This commit is contained in:
Vinnie Falco
2018-02-28 13:41:58 -08:00
parent dfc5a2ff67
commit 073b53e448
8 changed files with 84 additions and 83 deletions

View File

@@ -2,6 +2,7 @@ Version 161:
* Don't copy the handler in write_some_op * Don't copy the handler in write_some_op
* Add move-only handler tests * Add move-only handler tests
* Fix handler parameter javadocs
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------

View File

@@ -210,8 +210,8 @@ detect_ssl(
@param buffer The dynamic buffer to use. This type must meet the @param buffer The dynamic buffer to use. This type must meet the
requirements of @b DynamicBuffer. requirements of @b DynamicBuffer.
@param handler The handler to be called when the request @param handler Invoked when the operation completes.
completes. Copies will be made of the handler as required. The handler may be moved or copied as needed.
The equivalent function signature of the handler must be: The equivalent function signature of the handler must be:
@code @code
void handler( void handler(

View File

@@ -273,8 +273,8 @@ public:
is retained by the caller, which must guarantee that they is retained by the caller, which must guarantee that they
remain valid until the handler is called. remain valid until the handler is called.
@param handler The handler to be called when the operation @param handler Invoked when the operation completes.
completes. Copies will be made of the handler as required. The handler may be moved or copied as needed.
The equivalent function signature of the handler must be: The equivalent function signature of the handler must be:
@code void handler( @code void handler(
error_code const& error, // result of operation error_code const& error, // result of operation
@@ -345,8 +345,8 @@ public:
retained by the caller, which must guarantee that they retained by the caller, which must guarantee that they
remain valid until the handler is called. remain valid until the handler is called.
@param handler The handler to be called when the operation @param handler Invoked when the operation completes.
completes. Copies will be made of the handler as required. The handler may be moved or copied as needed.
The equivalent function signature of the handler must be: The equivalent function signature of the handler must be:
@code void handler( @code void handler(
error_code const& error, // result of operation error_code const& error, // result of operation

View File

@@ -175,8 +175,8 @@ read_some(
The object must remain valid at least until the The object must remain valid at least until the
handler is called; ownership is not transferred. handler is called; ownership is not transferred.
@param handler The handler to be called when the request @param handler Invoked when the operation completes.
completes. Copies will be made of the handler as required. The handler may be moved or copied as needed.
The equivalent function signature of the handler must be: The equivalent function signature of the handler must be:
@code void handler( @code void handler(
error_code const& error, // result of operation error_code const& error, // result of operation
@@ -361,8 +361,8 @@ read_header(
The object must remain valid at least until the The object must remain valid at least until the
handler is called; ownership is not transferred. handler is called; ownership is not transferred.
@param handler The handler to be called when the request @param handler Invoked when the operation completes.
completes. Copies will be made of the handler as required. The handler may be moved or copied as needed.
The equivalent function signature of the handler must be: The equivalent function signature of the handler must be:
@code void handler( @code void handler(
error_code const& error, // result of operation, error_code const& error, // result of operation,
@@ -545,8 +545,8 @@ read(
The object must remain valid at least until the The object must remain valid at least until the
handler is called; ownership is not transferred. handler is called; ownership is not transferred.
@param handler The handler to be called when the request @param handler Invoked when the operation completes.
completes. Copies will be made of the handler as required. The handler may be moved or copied as needed.
The equivalent function signature of the handler must be: The equivalent function signature of the handler must be:
@code void handler( @code void handler(
error_code const& error, // result of operation, error_code const& error, // result of operation,

View File

@@ -148,8 +148,8 @@ write_some(
The object must remain valid at least until the The object must remain valid at least until the
handler is called; ownership is not transferred. handler is called; ownership is not transferred.
@param handler The handler to be called when the operation @param handler Invoked when the operation completes.
completes. Copies will be made of the handler as required. The handler may be moved or copied as needed.
The equivalent function signature of the handler must be: The equivalent function signature of the handler must be:
@code void handler( @code void handler(
error_code const& error, // result of operation error_code const& error, // result of operation
@@ -269,8 +269,8 @@ write_header(
The object must remain valid at least until the The object must remain valid at least until the
handler is called; ownership is not transferred. handler is called; ownership is not transferred.
@param handler The handler to be called when the operation @param handler Invoked when the operation completes.
completes. Copies will be made of the handler as required. The handler may be moved or copied as needed.
The equivalent function signature of the handler must be: The equivalent function signature of the handler must be:
@code void handler( @code void handler(
error_code const& error, // result of operation error_code const& error, // result of operation
@@ -387,8 +387,8 @@ write(
The object must remain valid at least until the The object must remain valid at least until the
handler is called; ownership is not transferred. handler is called; ownership is not transferred.
@param handler The handler to be called when the operation @param handler Invoked when the operation completes.
completes. Copies will be made of the handler as required. The handler may be moved or copied as needed.
The equivalent function signature of the handler must be: The equivalent function signature of the handler must be:
@code void handler( @code void handler(
error_code const& error, // result of operation error_code const& error, // result of operation
@@ -502,8 +502,8 @@ write(
The object must remain valid at least until the The object must remain valid at least until the
handler is called; ownership is not transferred. handler is called; ownership is not transferred.
@param handler The handler to be called when the operation @param handler Invoked when the operation completes.
completes. Copies will be made of the handler as required. The handler may be moved or copied as needed.
The equivalent function signature of the handler must be: The equivalent function signature of the handler must be:
@code void handler( @code void handler(
error_code const& error, // result of operation error_code const& error, // result of operation

View File

@@ -55,9 +55,9 @@ teardown(
@param stream The stream to tear down. @param stream The stream to tear down.
@param handler The handler to be called when the request completes. @param handler Invoked when the operation completes.
Copies will be made of the handler as required. The equivalent The handler may be moved or copied as needed.
function signature of the handler must be: The equivalent function signature of the handler must be:
@code void handler( @code void handler(
error_code const& error // result of operation error_code const& error // result of operation
); @endcode ); @endcode

View File

@@ -1169,9 +1169,9 @@ public:
required by the HTTP protocol. Copies of this parameter may required by the HTTP protocol. Copies of this parameter may
be made as needed. be made as needed.
@param handler The handler to be called when the request completes. @param handler Invoked when the operation completes.
Copies will be made of the handler as required. The equivalent The handler may be moved or copied as needed.
function signature of the handler must be: The equivalent function signature of the handler must be:
@code void handler( @code void handler(
error_code const& ec // Result of operation error_code const& ec // Result of operation
); @endcode ); @endcode
@@ -1221,9 +1221,9 @@ public:
required by the HTTP protocol. Copies of this parameter may required by the HTTP protocol. Copies of this parameter may
be made as needed. be made as needed.
@param handler The handler to be called when the request completes. @param handler Invoked when the operation completes.
Copies will be made of the handler as required. The equivalent The handler may be moved or copied as needed.
function signature of the handler must be: The equivalent function signature of the handler must be:
@code void handler( @code void handler(
error_code const& ec // Result of operation error_code const& ec // Result of operation
); @endcode ); @endcode
@@ -1279,9 +1279,9 @@ public:
request_type& req request_type& req
); @endcode ); @endcode
@param handler The handler to be called when the request completes. @param handler Invoked when the operation completes.
Copies will be made of the handler as required. The equivalent The handler may be moved or copied as needed.
function signature of the handler must be: The equivalent function signature of the handler must be:
@code void handler( @code void handler(
error_code const& ec // Result of operation error_code const& ec // Result of operation
); @endcode ); @endcode
@@ -1341,9 +1341,9 @@ public:
request_type& req request_type& req
); @endcode ); @endcode
@param handler The handler to be called when the request completes. @param handler Invoked when the operation completes.
Copies will be made of the handler as required. The equivalent The handler may be moved or copied as needed.
function signature of the handler must be: The equivalent function signature of the handler must be:
@code void handler( @code void handler(
error_code const& ec // Result of operation error_code const& ec // Result of operation
); @endcode ); @endcode
@@ -1916,9 +1916,9 @@ public:
@ref http::read or @ref http::async_read, then call @ref accept @ref http::read or @ref http::async_read, then call @ref accept
or @ref async_accept with the request. or @ref async_accept with the request.
@param handler The handler to be called when the request @param handler Invoked when the operation completes.
completes. Copies will be made of the handler as required. The The handler may be moved or copied as needed.
equivalent function signature of the handler must be: The equivalent function signature of the handler must be:
@code void handler( @code void handler(
error_code const& ec // Result of operation error_code const& ec // Result of operation
); @endcode ); @endcode
@@ -1977,9 +1977,9 @@ public:
response_type& res response_type& res
); @endcode ); @endcode
@param handler The handler to be called when the request @param handler Invoked when the operation completes.
completes. Copies will be made of the handler as required. The The handler may be moved or copied as needed.
equivalent function signature of the handler must be: The equivalent function signature of the handler must be:
@code void handler( @code void handler(
error_code const& ec // Result of operation error_code const& ec // Result of operation
); @endcode ); @endcode
@@ -2040,9 +2040,9 @@ public:
then to received WebSocket frames. The implementation will then to received WebSocket frames. The implementation will
copy the caller provided data before the function returns. copy the caller provided data before the function returns.
@param handler The handler to be called when the request @param handler Invoked when the operation completes.
completes. Copies will be made of the handler as required. The The handler may be moved or copied as needed.
equivalent function signature of the handler must be: The equivalent function signature of the handler must be:
@code void handler( @code void handler(
error_code const& ec // Result of operation error_code const& ec // Result of operation
); @endcode ); @endcode
@@ -2118,9 +2118,9 @@ public:
response_type& res response_type& res
); @endcode ); @endcode
@param handler The handler to be called when the request @param handler Invoked when the operation completes.
completes. Copies will be made of the handler as required. The The handler may be moved or copied as needed.
equivalent function signature of the handler must be: The equivalent function signature of the handler must be:
@code void handler( @code void handler(
error_code const& ec // Result of operation error_code const& ec // Result of operation
); @endcode ); @endcode
@@ -2179,9 +2179,9 @@ public:
Ownership is not transferred, the implementation will not access Ownership is not transferred, the implementation will not access
this object from other threads. this object from other threads.
@param handler The handler to be called when the request @param handler Invoked when the operation completes.
completes. Copies will be made of the handler as required. The The handler may be moved or copied as needed.
equivalent function signature of the handler must be: The equivalent function signature of the handler must be:
@code void handler( @code void handler(
error_code const& ec // Result of operation error_code const& ec // Result of operation
); @endcode ); @endcode
@@ -2242,9 +2242,9 @@ public:
response_type& res response_type& res
); @endcode ); @endcode
@param handler The handler to be called when the request @param handler Invoked when the operation completes.
completes. Copies will be made of the handler as required. The The handler may be moved or copied as needed.
equivalent function signature of the handler must be: The equivalent function signature of the handler must be:
@code void handler( @code void handler(
error_code const& ec // Result of operation error_code const& ec // Result of operation
); @endcode ); @endcode
@@ -2359,9 +2359,9 @@ public:
@param cr The reason for the close. @param cr The reason for the close.
@param handler The handler to be called when the close operation @param handler Invoked when the operation completes.
completes. Copies will be made of the handler as required. The The handler may be moved or copied as needed.
function signature of the handler must be: The function signature of the handler must be:
@code @code
void handler( void handler(
error_code const& ec // Result of operation error_code const& ec // Result of operation
@@ -2437,9 +2437,9 @@ public:
@param payload The payload of the ping message, which may be empty. @param payload The payload of the ping message, which may be empty.
@param handler The handler to be called when the read operation @param handler Invoked when the operation completes.
completes. Copies will be made of the handler as required. The The handler may be moved or copied as needed.
function signature of the handler must be: The function signature of the handler must be:
@code @code
void handler( void handler(
error_code const& ec // Result of operation error_code const& ec // Result of operation
@@ -2530,9 +2530,9 @@ public:
@param payload The payload of the pong message, which may be empty. @param payload The payload of the pong message, which may be empty.
@param handler The handler to be called when the read operation @param handler Invoked when the operation completes.
completes. Copies will be made of the handler as required. The The handler may be moved or copied as needed.
function signature of the handler must be: The function signature of the handler must be:
@code @code
void handler( void handler(
error_code const& ec // Result of operation error_code const& ec // Result of operation
@@ -2688,9 +2688,9 @@ public:
any masking or decompression has been applied. This object must any masking or decompression has been applied. This object must
remain valid until the handler is called. remain valid until the handler is called.
@param handler The handler to be called when the read operation @param handler Invoked when the operation completes.
completes. Copies will be made of the handler as required. The The handler may be moved or copied as needed.
equivalent function signature of the handler must be: The equivalent function signature of the handler must be:
@code @code
void handler( void handler(
error_code const& ec, // Result of operation error_code const& ec, // Result of operation
@@ -2868,9 +2868,9 @@ public:
will append into the buffer. If this value is zero, then a reasonable will append into the buffer. If this value is zero, then a reasonable
size will be chosen automatically. size will be chosen automatically.
@param handler The handler to be called when the read operation @param handler Invoked when the operation completes.
completes. Copies will be made of the handler as required. The The handler may be moved or copied as needed.
equivalent function signature of the handler must be: The equivalent function signature of the handler must be:
@code @code
void handler( void handler(
error_code const& ec, // Result of operation error_code const& ec, // Result of operation
@@ -3041,9 +3041,9 @@ public:
locations pointed to by the buffer sequence remains valid locations pointed to by the buffer sequence remains valid
until the completion handler is called. until the completion handler is called.
@param handler The handler to be called when the read operation @param handler Invoked when the operation completes.
completes. Copies will be made of the handler as required. The The handler may be moved or copied as needed.
equivalent function signature of the handler must be: The equivalent function signature of the handler must be:
@code @code
void handler( void handler(
error_code const& ec, // Result of operation error_code const& ec, // Result of operation
@@ -3179,9 +3179,9 @@ public:
the memory locations pointed to by buffers remains valid the memory locations pointed to by buffers remains valid
until the completion handler is called. until the completion handler is called.
@param handler The handler to be called when the write operation @param handler Invoked when the operation completes.
completes. Copies will be made of the handler as required. The The handler may be moved or copied as needed.
function signature of the handler must be: The function signature of the handler must be:
@code @code
void handler( void handler(
error_code const& ec, // Result of operation error_code const& ec, // Result of operation
@@ -3309,9 +3309,9 @@ public:
the caller, which must guarantee that they remain valid until the caller, which must guarantee that they remain valid until
the handler is called. the handler is called.
@param handler The handler to be called when the write completes. @param handler Invoked when the operation completes.
Copies will be made of the handler as required. The equivalent The handler may be moved or copied as needed.
function signature of the handler must be: The equivalent function signature of the handler must be:
@code void handler( @code void handler(
error_code const& ec, // Result of operation error_code const& ec, // Result of operation
std::size_t bytes_transferred // Number of bytes written from the std::size_t bytes_transferred // Number of bytes written from the

View File

@@ -69,9 +69,9 @@ teardown(
@param socket The socket to tear down. @param socket The socket to tear down.
@param handler The handler to be called when the request completes. @param handler Invoked when the operation completes.
Copies will be made of the handler as required. The equivalent The handler may be moved or copied as needed.
function signature of the handler must be: The equivalent function signature of the handler must be:
@code void handler( @code void handler(
error_code const& error // result of operation error_code const& error // result of operation
); );
@@ -145,9 +145,9 @@ teardown(
@param socket The socket to tear down. @param socket The socket to tear down.
@param handler The handler to be called when the request completes. @param handler Invoked when the operation completes.
Copies will be made of the handler as required. The equivalent The handler may be moved or copied as needed.
function signature of the handler must be: The equivalent function signature of the handler must be:
@code void handler( @code void handler(
error_code const& error // result of operation error_code const& error // result of operation
); );