jdk/src/java.base/share/classes/java/nio/channels/AsynchronousSocketChannel.java
changeset 45881 aaec0fbe17ae
parent 45124 144479e89cdb
equal deleted inserted replaced
45871:878e21603932 45881:aaec0fbe17ae
    64  * <blockquote>
    64  * <blockquote>
    65  * <table class="striped">
    65  * <table class="striped">
    66  * <caption style="display:none">Socket options</caption>
    66  * <caption style="display:none">Socket options</caption>
    67  * <thead>
    67  * <thead>
    68  *   <tr>
    68  *   <tr>
    69  *     <th>Option Name</th>
    69  *     <th scope="col">Option Name</th>
    70  *     <th>Description</th>
    70  *     <th scope="col">Description</th>
    71  *   </tr>
    71  *   </tr>
    72  * </thead>
    72  * </thead>
    73  * <tbody>
    73  * <tbody>
    74  *   <tr>
    74  *   <tr>
    75  *     <td> {@link java.net.StandardSocketOptions#SO_SNDBUF SO_SNDBUF} </td>
    75  *     <th scope="row"> {@link java.net.StandardSocketOptions#SO_SNDBUF SO_SNDBUF} </th>
    76  *     <td> The size of the socket send buffer </td>
    76  *     <td> The size of the socket send buffer </td>
    77  *   </tr>
    77  *   </tr>
    78  *   <tr>
    78  *   <tr>
    79  *     <td> {@link java.net.StandardSocketOptions#SO_RCVBUF SO_RCVBUF} </td>
    79  *     <th scope="row"> {@link java.net.StandardSocketOptions#SO_RCVBUF SO_RCVBUF} </th>
    80  *     <td> The size of the socket receive buffer </td>
    80  *     <td> The size of the socket receive buffer </td>
    81  *   </tr>
    81  *   </tr>
    82  *   <tr>
    82  *   <tr>
    83  *     <td> {@link java.net.StandardSocketOptions#SO_KEEPALIVE SO_KEEPALIVE} </td>
    83  *     <th scope="row"> {@link java.net.StandardSocketOptions#SO_KEEPALIVE SO_KEEPALIVE} </th>
    84  *     <td> Keep connection alive </td>
    84  *     <td> Keep connection alive </td>
    85  *   </tr>
    85  *   </tr>
    86  *   <tr>
    86  *   <tr>
    87  *     <td> {@link java.net.StandardSocketOptions#SO_REUSEADDR SO_REUSEADDR} </td>
    87  *     <th scope="row"> {@link java.net.StandardSocketOptions#SO_REUSEADDR SO_REUSEADDR} </th>
    88  *     <td> Re-use address </td>
    88  *     <td> Re-use address </td>
    89  *   </tr>
    89  *   </tr>
    90  *   <tr>
    90  *   <tr>
    91  *     <td> {@link java.net.StandardSocketOptions#TCP_NODELAY TCP_NODELAY} </td>
    91  *     <th scope="row"> {@link java.net.StandardSocketOptions#TCP_NODELAY TCP_NODELAY} </th>
    92  *     <td> Disable the Nagle algorithm </td>
    92  *     <td> Disable the Nagle algorithm </td>
    93  *   </tr>
    93  *   </tr>
    94  * </tbody>
    94  * </tbody>
    95  * </table>
    95  * </table>
    96  * </blockquote>
    96  * </blockquote>