abstract class io.netty.channel.CompleteChannelFuture extends io.netty.util.concurrent.CompleteFuture<java.lang.Void> implements io.netty.channel.ChannelFuture
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: io.netty.channel.CompleteChannelFuture
  super_class: io.netty.util.concurrent.CompleteFuture
{
  private final io.netty.channel.Channel channel;
    descriptor: Lio/netty/channel/Channel;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  protected void <init>(io.netty.channel.Channel, io.netty.util.concurrent.EventExecutor);
    descriptor: (Lio/netty/channel/Channel;Lio/netty/util/concurrent/EventExecutor;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.channel.CompleteChannelFuture this
        start local 1 // io.netty.channel.Channel channel
        start local 2 // io.netty.util.concurrent.EventExecutor executor
         0: .line 37
            aload 0 /* this */
            aload 2 /* executor */
            invokespecial io.netty.util.concurrent.CompleteFuture.<init>:(Lio/netty/util/concurrent/EventExecutor;)V
         1: .line 38
            aload 1 /* channel */
            ifnonnull 3
         2: .line 39
            new java.lang.NullPointerException
            dup
            ldc "channel"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 41
      StackMap locals: io.netty.channel.CompleteChannelFuture io.netty.channel.Channel io.netty.util.concurrent.EventExecutor
      StackMap stack:
            aload 0 /* this */
            aload 1 /* channel */
            putfield io.netty.channel.CompleteChannelFuture.channel:Lio/netty/channel/Channel;
         4: .line 42
            return
        end local 2 // io.netty.util.concurrent.EventExecutor executor
        end local 1 // io.netty.channel.Channel channel
        end local 0 // io.netty.channel.CompleteChannelFuture this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lio/netty/channel/CompleteChannelFuture;
            0    5     1   channel  Lio/netty/channel/Channel;
            0    5     2  executor  Lio/netty/util/concurrent/EventExecutor;
    MethodParameters:
          Name  Flags
      channel   
      executor  

  protected io.netty.util.concurrent.EventExecutor executor();
    descriptor: ()Lio/netty/util/concurrent/EventExecutor;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // io.netty.channel.CompleteChannelFuture this
         0: .line 46
            aload 0 /* this */
            invokespecial io.netty.util.concurrent.CompleteFuture.executor:()Lio/netty/util/concurrent/EventExecutor;
            astore 1 /* e */
        start local 1 // io.netty.util.concurrent.EventExecutor e
         1: .line 47
            aload 1 /* e */
            ifnonnull 3
         2: .line 48
            aload 0 /* this */
            invokevirtual io.netty.channel.CompleteChannelFuture.channel:()Lio/netty/channel/Channel;
            invokeinterface io.netty.channel.Channel.eventLoop:()Lio/netty/channel/EventLoop;
            areturn
         3: .line 50
      StackMap locals: io.netty.util.concurrent.EventExecutor
      StackMap stack:
            aload 1 /* e */
            areturn
        end local 1 // io.netty.util.concurrent.EventExecutor e
        end local 0 // io.netty.channel.CompleteChannelFuture this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/netty/channel/CompleteChannelFuture;
            1    4     1     e  Lio/netty/util/concurrent/EventExecutor;

  public io.netty.channel.ChannelFuture addListener(io.netty.util.concurrent.GenericFutureListener<? extends io.netty.util.concurrent.Future<? super java.lang.Void>>);
    descriptor: (Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.channel.CompleteChannelFuture this
        start local 1 // io.netty.util.concurrent.GenericFutureListener listener
         0: .line 56
            aload 0 /* this */
            aload 1 /* listener */
            invokespecial io.netty.util.concurrent.CompleteFuture.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/util/concurrent/Future;
            pop
         1: .line 57
            aload 0 /* this */
            areturn
        end local 1 // io.netty.util.concurrent.GenericFutureListener listener
        end local 0 // io.netty.channel.CompleteChannelFuture this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/netty/channel/CompleteChannelFuture;
            0    2     1  listener  Lio/netty/util/concurrent/GenericFutureListener<+Lio/netty/util/concurrent/Future<-Ljava/lang/Void;>;>;
    Signature: (Lio/netty/util/concurrent/GenericFutureListener<+Lio/netty/util/concurrent/Future<-Ljava/lang/Void;>;>;)Lio/netty/channel/ChannelFuture;
    MethodParameters:
          Name  Flags
      listener  

  public io.netty.channel.ChannelFuture addListeners(io.netty.util.concurrent.GenericFutureListener<? extends io.netty.util.concurrent.Future<? super java.lang.Void>>[]);
    descriptor: ([Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelFuture;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.channel.CompleteChannelFuture this
        start local 1 // io.netty.util.concurrent.GenericFutureListener[] listeners
         0: .line 62
            aload 0 /* this */
            aload 1 /* listeners */
            invokespecial io.netty.util.concurrent.CompleteFuture.addListeners:([Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/util/concurrent/Future;
            pop
         1: .line 63
            aload 0 /* this */
            areturn
        end local 1 // io.netty.util.concurrent.GenericFutureListener[] listeners
        end local 0 // io.netty.channel.CompleteChannelFuture this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lio/netty/channel/CompleteChannelFuture;
            0    2     1  listeners  [Lio/netty/util/concurrent/GenericFutureListener;
    Signature: ([Lio/netty/util/concurrent/GenericFutureListener<+Lio/netty/util/concurrent/Future<-Ljava/lang/Void;>;>;)Lio/netty/channel/ChannelFuture;
    MethodParameters:
           Name  Flags
      listeners  

  public io.netty.channel.ChannelFuture removeListener(io.netty.util.concurrent.GenericFutureListener<? extends io.netty.util.concurrent.Future<? super java.lang.Void>>);
    descriptor: (Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.channel.CompleteChannelFuture this
        start local 1 // io.netty.util.concurrent.GenericFutureListener listener
         0: .line 68
            aload 0 /* this */
            aload 1 /* listener */
            invokespecial io.netty.util.concurrent.CompleteFuture.removeListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/util/concurrent/Future;
            pop
         1: .line 69
            aload 0 /* this */
            areturn
        end local 1 // io.netty.util.concurrent.GenericFutureListener listener
        end local 0 // io.netty.channel.CompleteChannelFuture this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/netty/channel/CompleteChannelFuture;
            0    2     1  listener  Lio/netty/util/concurrent/GenericFutureListener<+Lio/netty/util/concurrent/Future<-Ljava/lang/Void;>;>;
    Signature: (Lio/netty/util/concurrent/GenericFutureListener<+Lio/netty/util/concurrent/Future<-Ljava/lang/Void;>;>;)Lio/netty/channel/ChannelFuture;
    MethodParameters:
          Name  Flags
      listener  

  public io.netty.channel.ChannelFuture removeListeners(io.netty.util.concurrent.GenericFutureListener<? extends io.netty.util.concurrent.Future<? super java.lang.Void>>[]);
    descriptor: ([Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelFuture;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.channel.CompleteChannelFuture this
        start local 1 // io.netty.util.concurrent.GenericFutureListener[] listeners
         0: .line 74
            aload 0 /* this */
            aload 1 /* listeners */
            invokespecial io.netty.util.concurrent.CompleteFuture.removeListeners:([Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/util/concurrent/Future;
            pop
         1: .line 75
            aload 0 /* this */
            areturn
        end local 1 // io.netty.util.concurrent.GenericFutureListener[] listeners
        end local 0 // io.netty.channel.CompleteChannelFuture this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lio/netty/channel/CompleteChannelFuture;
            0    2     1  listeners  [Lio/netty/util/concurrent/GenericFutureListener;
    Signature: ([Lio/netty/util/concurrent/GenericFutureListener<+Lio/netty/util/concurrent/Future<-Ljava/lang/Void;>;>;)Lio/netty/channel/ChannelFuture;
    MethodParameters:
           Name  Flags
      listeners  

  public io.netty.channel.ChannelFuture syncUninterruptibly();
    descriptor: ()Lio/netty/channel/ChannelFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.channel.CompleteChannelFuture this
         0: .line 80
            aload 0 /* this */
            areturn
        end local 0 // io.netty.channel.CompleteChannelFuture this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/channel/CompleteChannelFuture;

  public io.netty.channel.ChannelFuture sync();
    descriptor: ()Lio/netty/channel/ChannelFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.channel.CompleteChannelFuture this
         0: .line 85
            aload 0 /* this */
            areturn
        end local 0 // io.netty.channel.CompleteChannelFuture this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/channel/CompleteChannelFuture;
    Exceptions:
      throws java.lang.InterruptedException

  public io.netty.channel.ChannelFuture await();
    descriptor: ()Lio/netty/channel/ChannelFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.channel.CompleteChannelFuture this
         0: .line 90
            aload 0 /* this */
            areturn
        end local 0 // io.netty.channel.CompleteChannelFuture this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/channel/CompleteChannelFuture;
    Exceptions:
      throws java.lang.InterruptedException

  public io.netty.channel.ChannelFuture awaitUninterruptibly();
    descriptor: ()Lio/netty/channel/ChannelFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.channel.CompleteChannelFuture this
         0: .line 95
            aload 0 /* this */
            areturn
        end local 0 // io.netty.channel.CompleteChannelFuture this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/channel/CompleteChannelFuture;

  public io.netty.channel.Channel channel();
    descriptor: ()Lio/netty/channel/Channel;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.channel.CompleteChannelFuture this
         0: .line 100
            aload 0 /* this */
            getfield io.netty.channel.CompleteChannelFuture.channel:Lio/netty/channel/Channel;
            areturn
        end local 0 // io.netty.channel.CompleteChannelFuture this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/channel/CompleteChannelFuture;

  public java.lang.Void getNow();
    descriptor: ()Ljava/lang/Void;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.channel.CompleteChannelFuture this
         0: .line 105
            aconst_null
            areturn
        end local 0 // io.netty.channel.CompleteChannelFuture this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/channel/CompleteChannelFuture;

  public boolean isVoid();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.channel.CompleteChannelFuture this
         0: .line 110
            iconst_0
            ireturn
        end local 0 // io.netty.channel.CompleteChannelFuture this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/channel/CompleteChannelFuture;

  public io.netty.util.concurrent.Future addListeners(io.netty.util.concurrent.GenericFutureListener[]);
    descriptor: ([Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/util/concurrent/Future;
    flags: (0x10c1) ACC_PUBLIC, ACC_BRIDGE, ACC_VARARGS, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast io.netty.util.concurrent.GenericFutureListener[]
            invokevirtual io.netty.channel.CompleteChannelFuture.addListeners:([Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelFuture;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.util.concurrent.Future syncUninterruptibly();
    descriptor: ()Lio/netty/util/concurrent/Future;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.netty.channel.CompleteChannelFuture.syncUninterruptibly:()Lio/netty/channel/ChannelFuture;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.util.concurrent.Future sync();
    descriptor: ()Lio/netty/util/concurrent/Future;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.netty.channel.CompleteChannelFuture.sync:()Lio/netty/channel/ChannelFuture;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.InterruptedException

  public io.netty.util.concurrent.Future removeListener(io.netty.util.concurrent.GenericFutureListener);
    descriptor: (Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/util/concurrent/Future;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast io.netty.util.concurrent.GenericFutureListener
            invokevirtual io.netty.channel.CompleteChannelFuture.removeListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelFuture;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.util.concurrent.Future awaitUninterruptibly();
    descriptor: ()Lio/netty/util/concurrent/Future;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.netty.channel.CompleteChannelFuture.awaitUninterruptibly:()Lio/netty/channel/ChannelFuture;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object getNow();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.netty.channel.CompleteChannelFuture.getNow:()Ljava/lang/Void;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.util.concurrent.Future addListener(io.netty.util.concurrent.GenericFutureListener);
    descriptor: (Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/util/concurrent/Future;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast io.netty.util.concurrent.GenericFutureListener
            invokevirtual io.netty.channel.CompleteChannelFuture.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelFuture;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.util.concurrent.Future await();
    descriptor: ()Lio/netty/util/concurrent/Future;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.netty.channel.CompleteChannelFuture.await:()Lio/netty/channel/ChannelFuture;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.InterruptedException

  public io.netty.util.concurrent.Future removeListeners(io.netty.util.concurrent.GenericFutureListener[]);
    descriptor: ([Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/util/concurrent/Future;
    flags: (0x10c1) ACC_PUBLIC, ACC_BRIDGE, ACC_VARARGS, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast io.netty.util.concurrent.GenericFutureListener[]
            invokevirtual io.netty.channel.CompleteChannelFuture.removeListeners:([Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelFuture;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Lio/netty/util/concurrent/CompleteFuture<Ljava/lang/Void;>;Lio/netty/channel/ChannelFuture;
SourceFile: "CompleteChannelFuture.java"