< prev index next >

src/java.base/share/classes/java/nio/channels/SocketChannel.java

Print this page

        

*** 64,78 **** * AsynchronousCloseException}. * * <p> Socket options are configured using the {@link #setOption(SocketOption,Object) * setOption} method. Socket channels support the following options: * <blockquote> ! * <table border summary="Socket options"> * <tr> * <th>Option Name</th> * <th>Description</th> * </tr> * <tr> * <td> {@link java.net.StandardSocketOptions#SO_SNDBUF SO_SNDBUF} </td> * <td> The size of the socket send buffer </td> * </tr> * <tr> --- 64,82 ---- * AsynchronousCloseException}. * * <p> Socket options are configured using the {@link #setOption(SocketOption,Object) * setOption} method. Socket channels support the following options: * <blockquote> ! * <table class="striped"> ! * <caption style="display:none">Socket options</caption> ! * <thead> * <tr> * <th>Option Name</th> * <th>Description</th> * </tr> + * </thead> + * <tbody> * <tr> * <td> {@link java.net.StandardSocketOptions#SO_SNDBUF SO_SNDBUF} </td> * <td> The size of the socket send buffer </td> * </tr> * <tr>
*** 94,103 **** --- 98,108 ---- * </tr> * <tr> * <td> {@link java.net.StandardSocketOptions#TCP_NODELAY TCP_NODELAY} </td> * <td> Disable the Nagle algorithm </td> * </tr> + * </tbody> * </table> * </blockquote> * Additional (implementation specific) options may also be supported. * * <p> Socket channels are safe for use by multiple concurrent threads. They
< prev index next >