< prev index next >

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

Print this page

        

*** 58,72 **** * may be configured by means of system properties defined in the table below. * Where the {@link java.util.concurrent.ThreadFactory ThreadFactory} for the * default group is not configured then the pooled threads of the default group * are {@link Thread#isDaemon daemon} threads. * ! * <table border summary="System properties"> * <tr> * <th>System property</th> * <th>Description</th> * </tr> * <tr> * <td> {@code java.nio.channels.DefaultThreadPool.threadFactory} </td> * <td> The value of this property is taken to be the fully-qualified name * of a concrete {@link java.util.concurrent.ThreadFactory ThreadFactory} * class. The class is loaded using the system class loader and instantiated. --- 58,76 ---- * may be configured by means of system properties defined in the table below. * Where the {@link java.util.concurrent.ThreadFactory ThreadFactory} for the * default group is not configured then the pooled threads of the default group * are {@link Thread#isDaemon daemon} threads. * ! * <table class="striped"> ! * <caption style="display:none:">System properties</caption> ! * <thead> * <tr> * <th>System property</th> * <th>Description</th> * </tr> + * </thead> + * <tbody> * <tr> * <td> {@code java.nio.channels.DefaultThreadPool.threadFactory} </td> * <td> The value of this property is taken to be the fully-qualified name * of a concrete {@link java.util.concurrent.ThreadFactory ThreadFactory} * class. The class is loaded using the system class loader and instantiated.
*** 84,93 **** --- 88,98 ---- * representation of an {@code Integer} that is the initial size parameter. * If the value cannot be parsed as an {@code Integer} it causes an * unspecified error to be thrown during the construction of the default * group. </td> * </tr> + * </tbody> * </table> * * <a id="threading"></a><h2>Threading</h2> * * <p> The completion handler for an I/O operation initiated on a channel bound
< prev index next >