Save This Page
Home » openjdk-7 » sun » nio » ch » [javadoc | source]
sun.nio.ch
class: SocketDispatcher [javadoc | source]
java.lang.Object
   sun.nio.ch.NativeDispatcher
      sun.nio.ch.SocketDispatcher
Allows different platforms to call different native methods for read and write operations.
Method from sun.nio.ch.SocketDispatcher Summary:
close,   close0,   preClose,   read,   read0,   readv,   readv0,   write,   write0,   writev,   writev0
Methods from sun.nio.ch.NativeDispatcher:
close,   preClose,   pread,   pwrite,   read,   readv,   write,   writev
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from sun.nio.ch.SocketDispatcher Detail:
  void close(FileDescriptor fd) throws IOException 
 static native  void close0(FileDescriptor fd) throws IOException
  void preClose(FileDescriptor fd) throws IOException 
 int read(FileDescriptor fd,
    long address,
    int len) throws IOException 
 static native int read0(FileDescriptor fd,
    long address,
    int len) throws IOException
 long readv(FileDescriptor fd,
    long address,
    int len) throws IOException 
 static native long readv0(FileDescriptor fd,
    long address,
    int len) throws IOException
 int write(FileDescriptor fd,
    long address,
    int len) throws IOException 
 static native int write0(FileDescriptor fd,
    long address,
    int len) throws IOException
 long writev(FileDescriptor fd,
    long address,
    int len) throws IOException 
 static native long writev0(FileDescriptor fd,
    long address,
    int len) throws IOException