src/java.base/share/classes/sun/net/PlatformDatagramSocketImpl.java
branchdatagramsocketimpl-branch
changeset 58697 e3ff12d14d43
parent 58680 7e9e2f10a050
equal deleted inserted replaced
58688:2b1e684c3ce6 58697:e3ff12d14d43
    23  * questions.
    23  * questions.
    24  */
    24  */
    25 
    25 
    26 package sun.net;
    26 package sun.net;
    27 
    27 
    28 import java.net.DatagramSocketImpl;
    28 public interface PlatformDatagramSocketImpl {
    29 
    29 
    30 public abstract class  PlatformDatagramSocketImpl extends DatagramSocketImpl {
    30     /** Tells whether, or not, the native connect should be used. */
    31     public abstract boolean nativeConnectDisabled();
    31     boolean nativeConnectDisabled();
    32 }
    32 }