< prev index next >

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

Print this page

        

*** 50,72 **** * has completed then an {@link AcceptPendingException} will be thrown. * * <p> Socket options are configured using the {@link #setOption(SocketOption,Object) * setOption} method. Channels of this type 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_RCVBUF SO_RCVBUF} </td> * <td> The size of the socket receive buffer </td> * </tr> * <tr> * <td> {@link java.net.StandardSocketOptions#SO_REUSEADDR SO_REUSEADDR} </td> * <td> Re-use address </td> * </tr> * </table> * </blockquote> * Additional (implementation specific) options may also be supported. * * <p> <b>Usage Example:</b> --- 50,77 ---- * has completed then an {@link AcceptPendingException} will be thrown. * * <p> Socket options are configured using the {@link #setOption(SocketOption,Object) * setOption} method. Channels of this type 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_RCVBUF SO_RCVBUF} </td> * <td> The size of the socket receive buffer </td> * </tr> * <tr> * <td> {@link java.net.StandardSocketOptions#SO_REUSEADDR SO_REUSEADDR} </td> * <td> Re-use address </td> * </tr> + * </tbody> * </table> * </blockquote> * Additional (implementation specific) options may also be supported. * * <p> <b>Usage Example:</b>
< prev index next >