final class io.netty.channel.embedded.EmbeddedEventLoop extends io.netty.util.concurrent.AbstractScheduledEventExecutor implements io.netty.channel.EventLoop
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: io.netty.channel.embedded.EmbeddedEventLoop
  super_class: io.netty.util.concurrent.AbstractScheduledEventExecutor
{
  private final java.util.Queue<java.lang.Runnable> tasks;
    descriptor: Ljava/util/Queue;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Queue<Ljava/lang/Runnable;>;

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
         0: .line 32
            aload 0 /* this */
            invokespecial io.netty.util.concurrent.AbstractScheduledEventExecutor.<init>:()V
         1: .line 34
            aload 0 /* this */
            new java.util.ArrayDeque
            dup
            iconst_2
            invokespecial java.util.ArrayDeque.<init>:(I)V
            putfield io.netty.channel.embedded.EmbeddedEventLoop.tasks:Ljava/util/Queue;
         2: .line 32
            return
        end local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/netty/channel/embedded/EmbeddedEventLoop;

  public io.netty.channel.EventLoopGroup parent();
    descriptor: ()Lio/netty/channel/EventLoopGroup;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
         0: .line 38
            aload 0 /* this */
            invokespecial io.netty.util.concurrent.AbstractScheduledEventExecutor.parent:()Lio/netty/util/concurrent/EventExecutorGroup;
            checkcast io.netty.channel.EventLoopGroup
            areturn
        end local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/channel/embedded/EmbeddedEventLoop;

  public io.netty.channel.EventLoop next();
    descriptor: ()Lio/netty/channel/EventLoop;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
         0: .line 43
            aload 0 /* this */
            invokespecial io.netty.util.concurrent.AbstractScheduledEventExecutor.next:()Lio/netty/util/concurrent/EventExecutor;
            checkcast io.netty.channel.EventLoop
            areturn
        end local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/channel/embedded/EmbeddedEventLoop;

  public void execute(java.lang.Runnable);
    descriptor: (Ljava/lang/Runnable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
        start local 1 // java.lang.Runnable command
         0: .line 48
            aload 1 /* command */
            ifnonnull 2
         1: .line 49
            new java.lang.NullPointerException
            dup
            ldc "command"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 51
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.channel.embedded.EmbeddedEventLoop.tasks:Ljava/util/Queue;
            aload 1 /* command */
            invokeinterface java.util.Queue.add:(Ljava/lang/Object;)Z
            pop
         3: .line 52
            return
        end local 1 // java.lang.Runnable command
        end local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lio/netty/channel/embedded/EmbeddedEventLoop;
            0    4     1  command  Ljava/lang/Runnable;
    MethodParameters:
         Name  Flags
      command  

  void runTasks();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
         0: .line 56
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.channel.embedded.EmbeddedEventLoop.tasks:Ljava/util/Queue;
            invokeinterface java.util.Queue.poll:()Ljava/lang/Object;
            checkcast java.lang.Runnable
            astore 1 /* task */
        start local 1 // java.lang.Runnable task
         1: .line 57
            aload 1 /* task */
            ifnonnull 3
         2: .line 58
            goto 5
         3: .line 61
      StackMap locals: java.lang.Runnable
      StackMap stack:
            aload 1 /* task */
            invokeinterface java.lang.Runnable.run:()V
        end local 1 // java.lang.Runnable task
         4: .line 55
            goto 0
         5: .line 63
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/netty/channel/embedded/EmbeddedEventLoop;
            1    4     1  task  Ljava/lang/Runnable;

  long runScheduledTasks();
    descriptor: ()J
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
         0: .line 66
            invokestatic io.netty.util.concurrent.AbstractScheduledEventExecutor.nanoTime:()J
            lstore 1 /* time */
        start local 1 // long time
         1: .line 68
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            lload 1 /* time */
            invokevirtual io.netty.channel.embedded.EmbeddedEventLoop.pollScheduledTask:(J)Ljava/lang/Runnable;
            astore 3 /* task */
        start local 3 // java.lang.Runnable task
         2: .line 69
            aload 3 /* task */
            ifnonnull 4
         3: .line 70
            aload 0 /* this */
            invokevirtual io.netty.channel.embedded.EmbeddedEventLoop.nextScheduledTaskNano:()J
            lreturn
         4: .line 73
      StackMap locals: java.lang.Runnable
      StackMap stack:
            aload 3 /* task */
            invokeinterface java.lang.Runnable.run:()V
        end local 3 // java.lang.Runnable task
         5: .line 67
            goto 1
        end local 1 // long time
        end local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/netty/channel/embedded/EmbeddedEventLoop;
            1    6     1  time  J
            2    5     3  task  Ljava/lang/Runnable;

  long nextScheduledTask();
    descriptor: ()J
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
         0: .line 78
            aload 0 /* this */
            invokevirtual io.netty.channel.embedded.EmbeddedEventLoop.nextScheduledTaskNano:()J
            lreturn
        end local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/channel/embedded/EmbeddedEventLoop;

  protected void cancelScheduledTasks();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
         0: .line 83
            aload 0 /* this */
            invokespecial io.netty.util.concurrent.AbstractScheduledEventExecutor.cancelScheduledTasks:()V
         1: .line 84
            return
        end local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/channel/embedded/EmbeddedEventLoop;

  public io.netty.util.concurrent.Future<?> shutdownGracefully(long, long, java.util.concurrent.TimeUnit);
    descriptor: (JJLjava/util/concurrent/TimeUnit;)Lio/netty/util/concurrent/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=4
        start local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
        start local 1 // long quietPeriod
        start local 3 // long timeout
        start local 5 // java.util.concurrent.TimeUnit unit
         0: .line 88
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 5 // java.util.concurrent.TimeUnit unit
        end local 3 // long timeout
        end local 1 // long quietPeriod
        end local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lio/netty/channel/embedded/EmbeddedEventLoop;
            0    1     1  quietPeriod  J
            0    1     3      timeout  J
            0    1     5         unit  Ljava/util/concurrent/TimeUnit;
    Signature: (JJLjava/util/concurrent/TimeUnit;)Lio/netty/util/concurrent/Future<*>;
    MethodParameters:
             Name  Flags
      quietPeriod  
      timeout      
      unit         

  public io.netty.util.concurrent.Future<?> terminationFuture();
    descriptor: ()Lio/netty/util/concurrent/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
         0: .line 93
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/channel/embedded/EmbeddedEventLoop;
    Signature: ()Lio/netty/util/concurrent/Future<*>;

  public void shutdown();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
         0: .line 99
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/channel/embedded/EmbeddedEventLoop;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()

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

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

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

  public boolean awaitTermination(long, java.util.concurrent.TimeUnit);
    descriptor: (JLjava/util/concurrent/TimeUnit;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=4, args_size=3
        start local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
        start local 1 // long timeout
        start local 3 // java.util.concurrent.TimeUnit unit
         0: .line 119
            iconst_0
            ireturn
        end local 3 // java.util.concurrent.TimeUnit unit
        end local 1 // long timeout
        end local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/netty/channel/embedded/EmbeddedEventLoop;
            0    1     1  timeout  J
            0    1     3     unit  Ljava/util/concurrent/TimeUnit;
    MethodParameters:
         Name  Flags
      timeout  
      unit     

  public io.netty.channel.ChannelFuture register(io.netty.channel.Channel);
    descriptor: (Lio/netty/channel/Channel;)Lio/netty/channel/ChannelFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
        start local 1 // io.netty.channel.Channel channel
         0: .line 124
            aload 0 /* this */
            new io.netty.channel.DefaultChannelPromise
            dup
            aload 1 /* channel */
            aload 0 /* this */
            invokespecial io.netty.channel.DefaultChannelPromise.<init>:(Lio/netty/channel/Channel;Lio/netty/util/concurrent/EventExecutor;)V
            invokevirtual io.netty.channel.embedded.EmbeddedEventLoop.register:(Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            areturn
        end local 1 // io.netty.channel.Channel channel
        end local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/netty/channel/embedded/EmbeddedEventLoop;
            0    1     1  channel  Lio/netty/channel/Channel;
    MethodParameters:
         Name  Flags
      channel  

  public io.netty.channel.ChannelFuture register(io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
        start local 1 // io.netty.channel.ChannelPromise promise
         0: .line 129
            aload 1 /* promise */
            ldc "promise"
            invokestatic io.netty.util.internal.ObjectUtil.checkNotNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 130
            aload 1 /* promise */
            invokeinterface io.netty.channel.ChannelPromise.channel:()Lio/netty/channel/Channel;
            invokeinterface io.netty.channel.Channel.unsafe:()Lio/netty/channel/Channel$Unsafe;
            aload 0 /* this */
            aload 1 /* promise */
            invokeinterface io.netty.channel.Channel$Unsafe.register:(Lio/netty/channel/EventLoop;Lio/netty/channel/ChannelPromise;)V
         2: .line 131
            aload 1 /* promise */
            areturn
        end local 1 // io.netty.channel.ChannelPromise promise
        end local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/netty/channel/embedded/EmbeddedEventLoop;
            0    3     1  promise  Lio/netty/channel/ChannelPromise;
    MethodParameters:
         Name  Flags
      promise  

  public io.netty.channel.ChannelFuture register(io.netty.channel.Channel, io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/Channel;Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
        start local 1 // io.netty.channel.Channel channel
        start local 2 // io.netty.channel.ChannelPromise promise
         0: .line 137
            aload 1 /* channel */
            invokeinterface io.netty.channel.Channel.unsafe:()Lio/netty/channel/Channel$Unsafe;
            aload 0 /* this */
            aload 2 /* promise */
            invokeinterface io.netty.channel.Channel$Unsafe.register:(Lio/netty/channel/EventLoop;Lio/netty/channel/ChannelPromise;)V
         1: .line 138
            aload 2 /* promise */
            areturn
        end local 2 // io.netty.channel.ChannelPromise promise
        end local 1 // io.netty.channel.Channel channel
        end local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/netty/channel/embedded/EmbeddedEventLoop;
            0    2     1  channel  Lio/netty/channel/Channel;
            0    2     2  promise  Lio/netty/channel/ChannelPromise;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
         Name  Flags
      channel  
      promise  

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

  public boolean inEventLoop(java.lang.Thread);
    descriptor: (Ljava/lang/Thread;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
        start local 1 // java.lang.Thread thread
         0: .line 148
            iconst_1
            ireturn
        end local 1 // java.lang.Thread thread
        end local 0 // io.netty.channel.embedded.EmbeddedEventLoop this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/channel/embedded/EmbeddedEventLoop;
            0    1     1  thread  Ljava/lang/Thread;
    MethodParameters:
        Name  Flags
      thread  

  public io.netty.util.concurrent.EventExecutorGroup parent();
    descriptor: ()Lio/netty/util/concurrent/EventExecutorGroup;
    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.embedded.EmbeddedEventLoop.parent:()Lio/netty/channel/EventLoopGroup;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.util.concurrent.EventExecutor next();
    descriptor: ()Lio/netty/util/concurrent/EventExecutor;
    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.embedded.EmbeddedEventLoop.next:()Lio/netty/channel/EventLoop;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "EmbeddedEventLoop.java"
InnerClasses:
  public abstract Unsafe = io.netty.channel.Channel$Unsafe of io.netty.channel.Channel