public abstract class java.nio.channels.AsynchronousSocketChannel implements java.nio.channels.AsynchronousByteChannel, java.nio.channels.NetworkChannel
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: java.nio.channels.AsynchronousSocketChannel
  super_class: java.lang.Object
{
  private final java.nio.channels.spi.AsynchronousChannelProvider provider;
    descriptor: Ljava/nio/channels/spi/AsynchronousChannelProvider;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  protected void <init>(java.nio.channels.spi.AsynchronousChannelProvider);
    descriptor: (Ljava/nio/channels/spi/AsynchronousChannelProvider;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.nio.channels.AsynchronousSocketChannel this
        start local 1 // java.nio.channels.spi.AsynchronousChannelProvider provider
         0: .line 130
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 131
            aload 0 /* this */
            aload 1 /* provider */
            putfield java.nio.channels.AsynchronousSocketChannel.provider:Ljava/nio/channels/spi/AsynchronousChannelProvider;
         2: .line 132
            return
        end local 1 // java.nio.channels.spi.AsynchronousChannelProvider provider
        end local 0 // java.nio.channels.AsynchronousSocketChannel this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Ljava/nio/channels/AsynchronousSocketChannel;
            0    3     1  provider  Ljava/nio/channels/spi/AsynchronousChannelProvider;
    MethodParameters:
          Name  Flags
      provider  

  public final java.nio.channels.spi.AsynchronousChannelProvider provider();
    descriptor: ()Ljava/nio/channels/spi/AsynchronousChannelProvider;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.nio.channels.AsynchronousSocketChannel this
         0: .line 140
            aload 0 /* this */
            getfield java.nio.channels.AsynchronousSocketChannel.provider:Ljava/nio/channels/spi/AsynchronousChannelProvider;
            areturn
        end local 0 // java.nio.channels.AsynchronousSocketChannel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/nio/channels/AsynchronousSocketChannel;

  public static java.nio.channels.AsynchronousSocketChannel open(java.nio.channels.AsynchronousChannelGroup);
    descriptor: (Ljava/nio/channels/AsynchronousChannelGroup;)Ljava/nio/channels/AsynchronousSocketChannel;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.nio.channels.AsynchronousChannelGroup group
         0: .line 167
            aload 0 /* group */
            ifnonnull 2
         1: .line 168
            invokestatic java.nio.channels.spi.AsynchronousChannelProvider.provider:()Ljava/nio/channels/spi/AsynchronousChannelProvider;
            goto 3
      StackMap locals:
      StackMap stack:
         2: aload 0 /* group */
            invokevirtual java.nio.channels.AsynchronousChannelGroup.provider:()Ljava/nio/channels/spi/AsynchronousChannelProvider;
         3: .line 167
      StackMap locals:
      StackMap stack: java.nio.channels.spi.AsynchronousChannelProvider
            astore 1 /* provider */
        start local 1 // java.nio.channels.spi.AsynchronousChannelProvider provider
         4: .line 169
            aload 1 /* provider */
            aload 0 /* group */
            invokevirtual java.nio.channels.spi.AsynchronousChannelProvider.openAsynchronousSocketChannel:(Ljava/nio/channels/AsynchronousChannelGroup;)Ljava/nio/channels/AsynchronousSocketChannel;
            areturn
        end local 1 // java.nio.channels.spi.AsynchronousChannelProvider provider
        end local 0 // java.nio.channels.AsynchronousChannelGroup group
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0     group  Ljava/nio/channels/AsynchronousChannelGroup;
            4    5     1  provider  Ljava/nio/channels/spi/AsynchronousChannelProvider;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      group  

  public static java.nio.channels.AsynchronousSocketChannel open();
    descriptor: ()Ljava/nio/channels/AsynchronousSocketChannel;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 190
            aconst_null
            invokestatic java.nio.channels.AsynchronousSocketChannel.open:(Ljava/nio/channels/AsynchronousChannelGroup;)Ljava/nio/channels/AsynchronousSocketChannel;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.io.IOException

  public abstract java.nio.channels.AsynchronousSocketChannel bind(java.net.SocketAddress);
    descriptor: (Ljava/net/SocketAddress;)Ljava/nio/channels/AsynchronousSocketChannel;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      local  

  public abstract <T> java.nio.channels.AsynchronousSocketChannel setOption(java.net.SocketOption<T>, T);
    descriptor: (Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/AsynchronousSocketChannel;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException
    Signature: <T:Ljava/lang/Object;>(Ljava/net/SocketOption<TT;>;TT;)Ljava/nio/channels/AsynchronousSocketChannel;
    MethodParameters:
       Name  Flags
      name   
      value  

  public abstract java.nio.channels.AsynchronousSocketChannel shutdownInput();
    descriptor: ()Ljava/nio/channels/AsynchronousSocketChannel;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract java.nio.channels.AsynchronousSocketChannel shutdownOutput();
    descriptor: ()Ljava/nio/channels/AsynchronousSocketChannel;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract java.net.SocketAddress getRemoteAddress();
    descriptor: ()Ljava/net/SocketAddress;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract <A> void connect(java.net.SocketAddress, A, java.nio.channels.CompletionHandler<java.lang.Void, ? super A>);
    descriptor: (Ljava/net/SocketAddress;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: <A:Ljava/lang/Object;>(Ljava/net/SocketAddress;TA;Ljava/nio/channels/CompletionHandler<Ljava/lang/Void;-TA;>;)V
    MethodParameters:
            Name  Flags
      remote      
      attachment  
      handler     

  public abstract java.util.concurrent.Future<java.lang.Void> connect(java.net.SocketAddress);
    descriptor: (Ljava/net/SocketAddress;)Ljava/util/concurrent/Future;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Ljava/net/SocketAddress;)Ljava/util/concurrent/Future<Ljava/lang/Void;>;
    MethodParameters:
        Name  Flags
      remote  

  public abstract <A> void read(java.nio.ByteBuffer, long, java.util.concurrent.TimeUnit, A, java.nio.channels.CompletionHandler<java.lang.Integer, ? super A>);
    descriptor: (Ljava/nio/ByteBuffer;JLjava/util/concurrent/TimeUnit;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: <A:Ljava/lang/Object;>(Ljava/nio/ByteBuffer;JLjava/util/concurrent/TimeUnit;TA;Ljava/nio/channels/CompletionHandler<Ljava/lang/Integer;-TA;>;)V
    MethodParameters:
            Name  Flags
      dst         
      timeout     
      unit        
      attachment  
      handler     

  public final <A> void read(java.nio.ByteBuffer, A, java.nio.channels.CompletionHandler<java.lang.Integer, ? super A>);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=7, locals=4, args_size=4
        start local 0 // java.nio.channels.AsynchronousSocketChannel this
        start local 1 // java.nio.ByteBuffer dst
        start local 2 // java.lang.Object attachment
        start local 3 // java.nio.channels.CompletionHandler handler
         0: .line 420
            aload 0 /* this */
            aload 1 /* dst */
            lconst_0
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
            aload 2 /* attachment */
            aload 3 /* handler */
            invokevirtual java.nio.channels.AsynchronousSocketChannel.read:(Ljava/nio/ByteBuffer;JLjava/util/concurrent/TimeUnit;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V
         1: .line 421
            return
        end local 3 // java.nio.channels.CompletionHandler handler
        end local 2 // java.lang.Object attachment
        end local 1 // java.nio.ByteBuffer dst
        end local 0 // java.nio.channels.AsynchronousSocketChannel this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Ljava/nio/channels/AsynchronousSocketChannel;
            0    2     1         dst  Ljava/nio/ByteBuffer;
            0    2     2  attachment  TA;
            0    2     3     handler  Ljava/nio/channels/CompletionHandler<Ljava/lang/Integer;-TA;>;
    Signature: <A:Ljava/lang/Object;>(Ljava/nio/ByteBuffer;TA;Ljava/nio/channels/CompletionHandler<Ljava/lang/Integer;-TA;>;)V
    MethodParameters:
            Name  Flags
      dst         
      attachment  
      handler     

  public abstract java.util.concurrent.Future<java.lang.Integer> read(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)Ljava/util/concurrent/Future;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Ljava/nio/ByteBuffer;)Ljava/util/concurrent/Future<Ljava/lang/Integer;>;
    MethodParameters:
      Name  Flags
      dst   

  public abstract <A> void read(java.nio.ByteBuffer[], int, int, long, java.util.concurrent.TimeUnit, A, java.nio.channels.CompletionHandler<java.lang.Long, ? super A>);
    descriptor: ([Ljava/nio/ByteBuffer;IIJLjava/util/concurrent/TimeUnit;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: <A:Ljava/lang/Object;>([Ljava/nio/ByteBuffer;IIJLjava/util/concurrent/TimeUnit;TA;Ljava/nio/channels/CompletionHandler<Ljava/lang/Long;-TA;>;)V
    MethodParameters:
            Name  Flags
      dsts        
      offset      
      length      
      timeout     
      unit        
      attachment  
      handler     

  public abstract <A> void write(java.nio.ByteBuffer, long, java.util.concurrent.TimeUnit, A, java.nio.channels.CompletionHandler<java.lang.Integer, ? super A>);
    descriptor: (Ljava/nio/ByteBuffer;JLjava/util/concurrent/TimeUnit;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: <A:Ljava/lang/Object;>(Ljava/nio/ByteBuffer;JLjava/util/concurrent/TimeUnit;TA;Ljava/nio/channels/CompletionHandler<Ljava/lang/Integer;-TA;>;)V
    MethodParameters:
            Name  Flags
      src         
      timeout     
      unit        
      attachment  
      handler     

  public final <A> void write(java.nio.ByteBuffer, A, java.nio.channels.CompletionHandler<java.lang.Integer, ? super A>);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=7, locals=4, args_size=4
        start local 0 // java.nio.channels.AsynchronousSocketChannel this
        start local 1 // java.nio.ByteBuffer src
        start local 2 // java.lang.Object attachment
        start local 3 // java.nio.channels.CompletionHandler handler
         0: .line 577
            aload 0 /* this */
            aload 1 /* src */
            lconst_0
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
            aload 2 /* attachment */
            aload 3 /* handler */
            invokevirtual java.nio.channels.AsynchronousSocketChannel.write:(Ljava/nio/ByteBuffer;JLjava/util/concurrent/TimeUnit;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V
         1: .line 578
            return
        end local 3 // java.nio.channels.CompletionHandler handler
        end local 2 // java.lang.Object attachment
        end local 1 // java.nio.ByteBuffer src
        end local 0 // java.nio.channels.AsynchronousSocketChannel this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Ljava/nio/channels/AsynchronousSocketChannel;
            0    2     1         src  Ljava/nio/ByteBuffer;
            0    2     2  attachment  TA;
            0    2     3     handler  Ljava/nio/channels/CompletionHandler<Ljava/lang/Integer;-TA;>;
    Signature: <A:Ljava/lang/Object;>(Ljava/nio/ByteBuffer;TA;Ljava/nio/channels/CompletionHandler<Ljava/lang/Integer;-TA;>;)V
    MethodParameters:
            Name  Flags
      src         
      attachment  
      handler     

  public abstract java.util.concurrent.Future<java.lang.Integer> write(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)Ljava/util/concurrent/Future;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Ljava/nio/ByteBuffer;)Ljava/util/concurrent/Future<Ljava/lang/Integer;>;
    MethodParameters:
      Name  Flags
      src   

  public abstract <A> void write(java.nio.ByteBuffer[], int, int, long, java.util.concurrent.TimeUnit, A, java.nio.channels.CompletionHandler<java.lang.Long, ? super A>);
    descriptor: ([Ljava/nio/ByteBuffer;IIJLjava/util/concurrent/TimeUnit;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: <A:Ljava/lang/Object;>([Ljava/nio/ByteBuffer;IIJLjava/util/concurrent/TimeUnit;TA;Ljava/nio/channels/CompletionHandler<Ljava/lang/Long;-TA;>;)V
    MethodParameters:
            Name  Flags
      srcs        
      offset      
      length      
      timeout     
      unit        
      attachment  
      handler     

  public abstract java.net.SocketAddress getLocalAddress();
    descriptor: ()Ljava/net/SocketAddress;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public java.nio.channels.NetworkChannel bind(java.net.SocketAddress);
    descriptor: (Ljava/net/SocketAddress;)Ljava/nio/channels/NetworkChannel;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual java.nio.channels.AsynchronousSocketChannel.bind:(Ljava/net/SocketAddress;)Ljava/nio/channels/AsynchronousSocketChannel;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.io.IOException

  public java.nio.channels.NetworkChannel setOption(java.net.SocketOption, java.lang.Object);
    descriptor: (Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/NetworkChannel;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast java.net.SocketOption
            aload 2
            checkcast java.lang.Object
            invokevirtual java.nio.channels.AsynchronousSocketChannel.setOption:(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/AsynchronousSocketChannel;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.io.IOException
}
SourceFile: "AsynchronousSocketChannel.java"