src/java.base/windows/classes/sun/nio/ch/SocketDispatcher.java
branchniosocketimpl-branch
changeset 57270 3519688a4e4d
parent 57186 997178749c87
child 57274 07b6be5d9150
equal deleted inserted replaced
57268:adcdd45830a0 57270:3519688a4e4d
    31  * Allows different platforms to call different native methods
    31  * Allows different platforms to call different native methods
    32  * for read and write operations.
    32  * for read and write operations.
    33  */
    33  */
    34 
    34 
    35 class SocketDispatcher extends NativeDispatcher {
    35 class SocketDispatcher extends NativeDispatcher {
    36 
       
    37     SocketDispatcher() { }
    36     SocketDispatcher() { }
    38 
       
    39     SocketDispatcher(boolean ignore) { }
       
    40 
    37 
    41     int read(FileDescriptor fd, long address, int len) throws IOException {
    38     int read(FileDescriptor fd, long address, int len) throws IOException {
    42         return read0(fd, address, len);
    39         return read0(fd, address, len);
    43     }
    40     }
    44 
    41