public class org.eclipse.jetty.server.ShutdownMonitor
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jetty.server.ShutdownMonitor
  super_class: java.lang.Object
{
  private final org.eclipse.jetty.util.thread.AutoLock$WithCondition _lock;
    descriptor: Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.Set<org.eclipse.jetty.util.component.LifeCycle> _lifeCycles;
    descriptor: Ljava/util/Set;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Set<Lorg/eclipse/jetty/util/component/LifeCycle;>;

  private boolean debug;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private final java.lang.String host;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private int port;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String key;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private boolean exitVm;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean alive;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  public static org.eclipse.jetty.server.ShutdownMonitor getInstance();
    descriptor: ()Lorg/eclipse/jetty/server/ShutdownMonitor;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 66
            getstatic org.eclipse.jetty.server.ShutdownMonitor$Holder.instance:Lorg/eclipse/jetty/server/ShutdownMonitor;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected static void reset();
    descriptor: ()V
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 71
            new org.eclipse.jetty.server.ShutdownMonitor
            dup
            invokespecial org.eclipse.jetty.server.ShutdownMonitor.<init>:()V
            putstatic org.eclipse.jetty.server.ShutdownMonitor$Holder.instance:Lorg/eclipse/jetty/server/ShutdownMonitor;
         1: .line 72
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static void register(org.eclipse.jetty.util.component.LifeCycle[]);
    descriptor: ([Lorg/eclipse/jetty/util/component/LifeCycle;)V
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.component.LifeCycle[] lifeCycles
         0: .line 76
            invokestatic org.eclipse.jetty.server.ShutdownMonitor.getInstance:()Lorg/eclipse/jetty/server/ShutdownMonitor;
            aload 0 /* lifeCycles */
            invokevirtual org.eclipse.jetty.server.ShutdownMonitor.addLifeCycles:([Lorg/eclipse/jetty/util/component/LifeCycle;)V
         1: .line 77
            return
        end local 0 // org.eclipse.jetty.util.component.LifeCycle[] lifeCycles
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0  lifeCycles  [Lorg/eclipse/jetty/util/component/LifeCycle;
    MethodParameters:
            Name  Flags
      lifeCycles  

  public static void deregister(org.eclipse.jetty.util.component.LifeCycle);
    descriptor: (Lorg/eclipse/jetty/util/component/LifeCycle;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.component.LifeCycle lifeCycle
         0: .line 81
            invokestatic org.eclipse.jetty.server.ShutdownMonitor.getInstance:()Lorg/eclipse/jetty/server/ShutdownMonitor;
            aload 0 /* lifeCycle */
            invokevirtual org.eclipse.jetty.server.ShutdownMonitor.removeLifeCycle:(Lorg/eclipse/jetty/util/component/LifeCycle;)V
         1: .line 82
            return
        end local 0 // org.eclipse.jetty.util.component.LifeCycle lifeCycle
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0  lifeCycle  Lorg/eclipse/jetty/util/component/LifeCycle;
    MethodParameters:
           Name  Flags
      lifeCycle  

  public static boolean isRegistered(org.eclipse.jetty.util.component.LifeCycle);
    descriptor: (Lorg/eclipse/jetty/util/component/LifeCycle;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.component.LifeCycle lifeCycle
         0: .line 86
            invokestatic org.eclipse.jetty.server.ShutdownMonitor.getInstance:()Lorg/eclipse/jetty/server/ShutdownMonitor;
            aload 0 /* lifeCycle */
            invokevirtual org.eclipse.jetty.server.ShutdownMonitor.containsLifeCycle:(Lorg/eclipse/jetty/util/component/LifeCycle;)Z
            ireturn
        end local 0 // org.eclipse.jetty.util.component.LifeCycle lifeCycle
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0  lifeCycle  Lorg/eclipse/jetty/util/component/LifeCycle;
    MethodParameters:
           Name  Flags
      lifeCycle  

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.ShutdownMonitor this
         0: .line 106
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 89
            aload 0 /* this */
            new org.eclipse.jetty.util.thread.AutoLock$WithCondition
            dup
            invokespecial org.eclipse.jetty.util.thread.AutoLock$WithCondition.<init>:()V
            putfield org.eclipse.jetty.server.ShutdownMonitor._lock:Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
         2: .line 90
            aload 0 /* this */
            new java.util.LinkedHashSet
            dup
            invokespecial java.util.LinkedHashSet.<init>:()V
            putfield org.eclipse.jetty.server.ShutdownMonitor._lifeCycles:Ljava/util/Set;
         3: .line 108
            aload 0 /* this */
            ldc "DEBUG"
            invokestatic java.lang.System.getProperty:(Ljava/lang/String;)Ljava/lang/String;
            ifnull 4
            iconst_1
            goto 5
      StackMap locals: org.eclipse.jetty.server.ShutdownMonitor
      StackMap stack: org.eclipse.jetty.server.ShutdownMonitor
         4: iconst_0
      StackMap locals: org.eclipse.jetty.server.ShutdownMonitor
      StackMap stack: org.eclipse.jetty.server.ShutdownMonitor int
         5: putfield org.eclipse.jetty.server.ShutdownMonitor.debug:Z
         6: .line 109
            aload 0 /* this */
            ldc "STOP.HOST"
            ldc "127.0.0.1"
            invokestatic java.lang.System.getProperty:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            putfield org.eclipse.jetty.server.ShutdownMonitor.host:Ljava/lang/String;
         7: .line 110
            aload 0 /* this */
            ldc "STOP.PORT"
            iconst_m1
            invokestatic java.lang.Integer.getInteger:(Ljava/lang/String;I)Ljava/lang/Integer;
            invokevirtual java.lang.Integer.intValue:()I
            putfield org.eclipse.jetty.server.ShutdownMonitor.port:I
         8: .line 111
            aload 0 /* this */
            ldc "STOP.KEY"
            aconst_null
            invokestatic java.lang.System.getProperty:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            putfield org.eclipse.jetty.server.ShutdownMonitor.key:Ljava/lang/String;
         9: .line 112
            aload 0 /* this */
            iconst_1
            putfield org.eclipse.jetty.server.ShutdownMonitor.exitVm:Z
        10: .line 113
            return
        end local 0 // org.eclipse.jetty.server.ShutdownMonitor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/eclipse/jetty/server/ShutdownMonitor;

  private void addLifeCycles(org.eclipse.jetty.util.component.LifeCycle[]);
    descriptor: ([Lorg/eclipse/jetty/util/component/LifeCycle;)V
    flags: (0x0082) ACC_PRIVATE, ACC_VARARGS
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.eclipse.jetty.server.ShutdownMonitor this
        start local 1 // org.eclipse.jetty.util.component.LifeCycle[] lifeCycles
         0: .line 117
            aconst_null
            astore 2
            aconst_null
            astore 3
         1: aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor._lock:Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            invokevirtual org.eclipse.jetty.util.thread.AutoLock$WithCondition.lock:()Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            astore 4 /* l */
        start local 4 // org.eclipse.jetty.util.thread.AutoLock l
         2: .line 119
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor._lifeCycles:Ljava/util/Set;
            aload 1 /* lifeCycles */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokeinterface java.util.Set.addAll:(Ljava/util/Collection;)Z
            pop
         3: .line 120
            aload 4 /* l */
            ifnull 9
            aload 4 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock.close:()V
            goto 9
      StackMap locals: org.eclipse.jetty.server.ShutdownMonitor org.eclipse.jetty.util.component.LifeCycle[] java.lang.Throwable java.lang.Throwable org.eclipse.jetty.util.thread.AutoLock
      StackMap stack: java.lang.Throwable
         4: astore 2
            aload 4 /* l */
            ifnull 5
            aload 4 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock.close:()V
        end local 4 // org.eclipse.jetty.util.thread.AutoLock l
      StackMap locals:
      StackMap stack:
         5: aload 2
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
         6: astore 3
            aload 2
            ifnonnull 7
            aload 3
            astore 2
            goto 8
      StackMap locals:
      StackMap stack:
         7: aload 2
            aload 3
            if_acmpeq 8
            aload 2
            aload 3
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
         8: aload 2
            athrow
         9: .line 121
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.eclipse.jetty.util.component.LifeCycle[] lifeCycles
        end local 0 // org.eclipse.jetty.server.ShutdownMonitor this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0        this  Lorg/eclipse/jetty/server/ShutdownMonitor;
            0   10     1  lifeCycles  [Lorg/eclipse/jetty/util/component/LifeCycle;
            2    5     4           l  Lorg/eclipse/jetty/util/thread/AutoLock;
      Exception table:
        from    to  target  type
           2     3       4  any
           1     6       6  any
    MethodParameters:
            Name  Flags
      lifeCycles  

  private void removeLifeCycle(org.eclipse.jetty.util.component.LifeCycle);
    descriptor: (Lorg/eclipse/jetty/util/component/LifeCycle;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.eclipse.jetty.server.ShutdownMonitor this
        start local 1 // org.eclipse.jetty.util.component.LifeCycle lifeCycle
         0: .line 125
            aconst_null
            astore 2
            aconst_null
            astore 3
         1: aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor._lock:Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            invokevirtual org.eclipse.jetty.util.thread.AutoLock$WithCondition.lock:()Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            astore 4 /* l */
        start local 4 // org.eclipse.jetty.util.thread.AutoLock l
         2: .line 127
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor._lifeCycles:Ljava/util/Set;
            aload 1 /* lifeCycle */
            invokeinterface java.util.Set.remove:(Ljava/lang/Object;)Z
            pop
         3: .line 128
            aload 4 /* l */
            ifnull 9
            aload 4 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock.close:()V
            goto 9
      StackMap locals: org.eclipse.jetty.server.ShutdownMonitor org.eclipse.jetty.util.component.LifeCycle java.lang.Throwable java.lang.Throwable org.eclipse.jetty.util.thread.AutoLock
      StackMap stack: java.lang.Throwable
         4: astore 2
            aload 4 /* l */
            ifnull 5
            aload 4 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock.close:()V
        end local 4 // org.eclipse.jetty.util.thread.AutoLock l
      StackMap locals:
      StackMap stack:
         5: aload 2
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
         6: astore 3
            aload 2
            ifnonnull 7
            aload 3
            astore 2
            goto 8
      StackMap locals:
      StackMap stack:
         7: aload 2
            aload 3
            if_acmpeq 8
            aload 2
            aload 3
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
         8: aload 2
            athrow
         9: .line 129
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.eclipse.jetty.util.component.LifeCycle lifeCycle
        end local 0 // org.eclipse.jetty.server.ShutdownMonitor this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   10     0       this  Lorg/eclipse/jetty/server/ShutdownMonitor;
            0   10     1  lifeCycle  Lorg/eclipse/jetty/util/component/LifeCycle;
            2    5     4          l  Lorg/eclipse/jetty/util/thread/AutoLock;
      Exception table:
        from    to  target  type
           2     3       4  any
           1     6       6  any
    MethodParameters:
           Name  Flags
      lifeCycle  

  private boolean containsLifeCycle(org.eclipse.jetty.util.component.LifeCycle);
    descriptor: (Lorg/eclipse/jetty/util/component/LifeCycle;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.eclipse.jetty.server.ShutdownMonitor this
        start local 1 // org.eclipse.jetty.util.component.LifeCycle lifeCycle
         0: .line 133
            aconst_null
            astore 2
            aconst_null
            astore 3
         1: aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor._lock:Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            invokevirtual org.eclipse.jetty.util.thread.AutoLock$WithCondition.lock:()Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            astore 4 /* l */
        start local 4 // org.eclipse.jetty.util.thread.AutoLock l
         2: .line 135
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor._lifeCycles:Ljava/util/Set;
            aload 1 /* lifeCycle */
            invokeinterface java.util.Set.contains:(Ljava/lang/Object;)Z
         3: .line 136
            aload 4 /* l */
            ifnull 4
            aload 4 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock.close:()V
         4: .line 135
      StackMap locals: org.eclipse.jetty.server.ShutdownMonitor org.eclipse.jetty.util.component.LifeCycle java.lang.Throwable java.lang.Throwable org.eclipse.jetty.util.thread.AutoLock
      StackMap stack: int
            ireturn
      StackMap locals:
      StackMap stack: java.lang.Throwable
         5: astore 2
         6: .line 136
            aload 4 /* l */
            ifnull 7
            aload 4 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock.close:()V
        end local 4 // org.eclipse.jetty.util.thread.AutoLock l
      StackMap locals:
      StackMap stack:
         7: aload 2
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: astore 3
            aload 2
            ifnonnull 9
            aload 3
            astore 2
            goto 10
      StackMap locals:
      StackMap stack:
         9: aload 2
            aload 3
            if_acmpeq 10
            aload 2
            aload 3
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        10: aload 2
            athrow
        end local 1 // org.eclipse.jetty.util.component.LifeCycle lifeCycle
        end local 0 // org.eclipse.jetty.server.ShutdownMonitor this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   11     0       this  Lorg/eclipse/jetty/server/ShutdownMonitor;
            0   11     1  lifeCycle  Lorg/eclipse/jetty/util/component/LifeCycle;
            2    7     4          l  Lorg/eclipse/jetty/util/thread/AutoLock;
      Exception table:
        from    to  target  type
           2     3       5  any
           1     4       8  any
           5     8       8  any
    MethodParameters:
           Name  Flags
      lifeCycle  

  private void debug(java.lang.String, java.lang.Object[]);
    descriptor: (Ljava/lang/String;[Ljava/lang/Object;)V
    flags: (0x0082) ACC_PRIVATE, ACC_VARARGS
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.jetty.server.ShutdownMonitor this
        start local 1 // java.lang.String format
        start local 2 // java.lang.Object[] args
         0: .line 141
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor.debug:Z
            ifeq 2
         1: .line 142
            getstatic java.lang.System.err:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "[ShutdownMonitor] "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* format */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "%n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 2 /* args */
            invokevirtual java.io.PrintStream.printf:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintStream;
            pop
         2: .line 143
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Object[] args
        end local 1 // java.lang.String format
        end local 0 // org.eclipse.jetty.server.ShutdownMonitor this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/jetty/server/ShutdownMonitor;
            0    3     1  format  Ljava/lang/String;
            0    3     2    args  [Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      format  
      args    

  private void debug(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.server.ShutdownMonitor this
        start local 1 // java.lang.Throwable t
         0: .line 147
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor.debug:Z
            ifeq 2
         1: .line 148
            aload 1 /* t */
            getstatic java.lang.System.err:Ljava/io/PrintStream;
            invokevirtual java.lang.Throwable.printStackTrace:(Ljava/io/PrintStream;)V
         2: .line 149
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Throwable t
        end local 0 // org.eclipse.jetty.server.ShutdownMonitor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jetty/server/ShutdownMonitor;
            0    3     1     t  Ljava/lang/Throwable;
    MethodParameters:
      Name  Flags
      t     

  public java.lang.String getKey();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // org.eclipse.jetty.server.ShutdownMonitor this
         0: .line 153
            aconst_null
            astore 1
            aconst_null
            astore 2
         1: aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor._lock:Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            invokevirtual org.eclipse.jetty.util.thread.AutoLock$WithCondition.lock:()Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            astore 3 /* l */
        start local 3 // org.eclipse.jetty.util.thread.AutoLock l
         2: .line 155
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor.key:Ljava/lang/String;
         3: .line 156
            aload 3 /* l */
            ifnull 4
            aload 3 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock.close:()V
         4: .line 155
      StackMap locals: org.eclipse.jetty.server.ShutdownMonitor java.lang.Throwable java.lang.Throwable org.eclipse.jetty.util.thread.AutoLock
      StackMap stack: java.lang.String
            areturn
      StackMap locals:
      StackMap stack: java.lang.Throwable
         5: astore 1
         6: .line 156
            aload 3 /* l */
            ifnull 7
            aload 3 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock.close:()V
        end local 3 // org.eclipse.jetty.util.thread.AutoLock l
      StackMap locals:
      StackMap stack:
         7: aload 1
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: astore 2
            aload 1
            ifnonnull 9
            aload 2
            astore 1
            goto 10
      StackMap locals:
      StackMap stack:
         9: aload 1
            aload 2
            if_acmpeq 10
            aload 1
            aload 2
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        10: aload 1
            athrow
        end local 0 // org.eclipse.jetty.server.ShutdownMonitor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/eclipse/jetty/server/ShutdownMonitor;
            2    7     3     l  Lorg/eclipse/jetty/util/thread/AutoLock;
      Exception table:
        from    to  target  type
           2     3       5  any
           1     4       8  any
           5     8       8  any

  public int getPort();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // org.eclipse.jetty.server.ShutdownMonitor this
         0: .line 161
            aconst_null
            astore 1
            aconst_null
            astore 2
         1: aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor._lock:Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            invokevirtual org.eclipse.jetty.util.thread.AutoLock$WithCondition.lock:()Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            astore 3 /* l */
        start local 3 // org.eclipse.jetty.util.thread.AutoLock l
         2: .line 163
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor.port:I
         3: .line 164
            aload 3 /* l */
            ifnull 4
            aload 3 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock.close:()V
         4: .line 163
      StackMap locals: org.eclipse.jetty.server.ShutdownMonitor java.lang.Throwable java.lang.Throwable org.eclipse.jetty.util.thread.AutoLock
      StackMap stack: int
            ireturn
      StackMap locals:
      StackMap stack: java.lang.Throwable
         5: astore 1
         6: .line 164
            aload 3 /* l */
            ifnull 7
            aload 3 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock.close:()V
        end local 3 // org.eclipse.jetty.util.thread.AutoLock l
      StackMap locals:
      StackMap stack:
         7: aload 1
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: astore 2
            aload 1
            ifnonnull 9
            aload 2
            astore 1
            goto 10
      StackMap locals:
      StackMap stack:
         9: aload 1
            aload 2
            if_acmpeq 10
            aload 1
            aload 2
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        10: aload 1
            athrow
        end local 0 // org.eclipse.jetty.server.ShutdownMonitor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/eclipse/jetty/server/ShutdownMonitor;
            2    7     3     l  Lorg/eclipse/jetty/util/thread/AutoLock;
      Exception table:
        from    to  target  type
           2     3       5  any
           1     4       8  any
           5     8       8  any

  public boolean isExitVm();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // org.eclipse.jetty.server.ShutdownMonitor this
         0: .line 169
            aconst_null
            astore 1
            aconst_null
            astore 2
         1: aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor._lock:Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            invokevirtual org.eclipse.jetty.util.thread.AutoLock$WithCondition.lock:()Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            astore 3 /* l */
        start local 3 // org.eclipse.jetty.util.thread.AutoLock l
         2: .line 171
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor.exitVm:Z
         3: .line 172
            aload 3 /* l */
            ifnull 4
            aload 3 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock.close:()V
         4: .line 171
      StackMap locals: org.eclipse.jetty.server.ShutdownMonitor java.lang.Throwable java.lang.Throwable org.eclipse.jetty.util.thread.AutoLock
      StackMap stack: int
            ireturn
      StackMap locals:
      StackMap stack: java.lang.Throwable
         5: astore 1
         6: .line 172
            aload 3 /* l */
            ifnull 7
            aload 3 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock.close:()V
        end local 3 // org.eclipse.jetty.util.thread.AutoLock l
      StackMap locals:
      StackMap stack:
         7: aload 1
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: astore 2
            aload 1
            ifnonnull 9
            aload 2
            astore 1
            goto 10
      StackMap locals:
      StackMap stack:
         9: aload 1
            aload 2
            if_acmpeq 10
            aload 1
            aload 2
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        10: aload 1
            athrow
        end local 0 // org.eclipse.jetty.server.ShutdownMonitor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/eclipse/jetty/server/ShutdownMonitor;
            2    7     3     l  Lorg/eclipse/jetty/util/thread/AutoLock;
      Exception table:
        from    to  target  type
           2     3       5  any
           1     4       8  any
           5     8       8  any

  public void setDebug(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.server.ShutdownMonitor this
        start local 1 // boolean flag
         0: .line 177
            aload 0 /* this */
            iload 1 /* flag */
            putfield org.eclipse.jetty.server.ShutdownMonitor.debug:Z
         1: .line 178
            return
        end local 1 // boolean flag
        end local 0 // org.eclipse.jetty.server.ShutdownMonitor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jetty/server/ShutdownMonitor;
            0    2     1  flag  Z
    MethodParameters:
      Name  Flags
      flag  

  public void setExitVm(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.eclipse.jetty.server.ShutdownMonitor this
        start local 1 // boolean exitVm
         0: .line 185
            aconst_null
            astore 2
            aconst_null
            astore 3
         1: aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor._lock:Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            invokevirtual org.eclipse.jetty.util.thread.AutoLock$WithCondition.lock:()Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            astore 4 /* l */
        start local 4 // org.eclipse.jetty.util.thread.AutoLock l
         2: .line 187
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor.alive:Z
            ifeq 4
         3: .line 188
            new java.lang.IllegalStateException
            dup
            ldc "ShutdownMonitor already started"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 189
      StackMap locals: java.lang.Throwable java.lang.Throwable org.eclipse.jetty.util.thread.AutoLock
      StackMap stack:
            aload 0 /* this */
            iload 1 /* exitVm */
            putfield org.eclipse.jetty.server.ShutdownMonitor.exitVm:Z
         5: .line 190
            aload 4 /* l */
            ifnull 11
            aload 4 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock.close:()V
            goto 11
      StackMap locals:
      StackMap stack: java.lang.Throwable
         6: astore 2
            aload 4 /* l */
            ifnull 7
            aload 4 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock.close:()V
        end local 4 // org.eclipse.jetty.util.thread.AutoLock l
      StackMap locals:
      StackMap stack:
         7: aload 2
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: astore 3
            aload 2
            ifnonnull 9
            aload 3
            astore 2
            goto 10
      StackMap locals:
      StackMap stack:
         9: aload 2
            aload 3
            if_acmpeq 10
            aload 2
            aload 3
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        10: aload 2
            athrow
        11: .line 191
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean exitVm
        end local 0 // org.eclipse.jetty.server.ShutdownMonitor this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lorg/eclipse/jetty/server/ShutdownMonitor;
            0   12     1  exitVm  Z
            2    7     4       l  Lorg/eclipse/jetty/util/thread/AutoLock;
      Exception table:
        from    to  target  type
           2     5       6  any
           1     8       8  any
    MethodParameters:
        Name  Flags
      exitVm  

  public void setKey(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.eclipse.jetty.server.ShutdownMonitor this
        start local 1 // java.lang.String key
         0: .line 195
            aconst_null
            astore 2
            aconst_null
            astore 3
         1: aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor._lock:Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            invokevirtual org.eclipse.jetty.util.thread.AutoLock$WithCondition.lock:()Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            astore 4 /* l */
        start local 4 // org.eclipse.jetty.util.thread.AutoLock l
         2: .line 197
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor.alive:Z
            ifeq 4
         3: .line 198
            new java.lang.IllegalStateException
            dup
            ldc "ShutdownMonitor already started"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 199
      StackMap locals: java.lang.Throwable java.lang.Throwable org.eclipse.jetty.util.thread.AutoLock
      StackMap stack:
            aload 0 /* this */
            aload 1 /* key */
            putfield org.eclipse.jetty.server.ShutdownMonitor.key:Ljava/lang/String;
         5: .line 200
            aload 4 /* l */
            ifnull 11
            aload 4 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock.close:()V
            goto 11
      StackMap locals:
      StackMap stack: java.lang.Throwable
         6: astore 2
            aload 4 /* l */
            ifnull 7
            aload 4 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock.close:()V
        end local 4 // org.eclipse.jetty.util.thread.AutoLock l
      StackMap locals:
      StackMap stack:
         7: aload 2
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: astore 3
            aload 2
            ifnonnull 9
            aload 3
            astore 2
            goto 10
      StackMap locals:
      StackMap stack:
         9: aload 2
            aload 3
            if_acmpeq 10
            aload 2
            aload 3
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        10: aload 2
            athrow
        11: .line 201
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String key
        end local 0 // org.eclipse.jetty.server.ShutdownMonitor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lorg/eclipse/jetty/server/ShutdownMonitor;
            0   12     1   key  Ljava/lang/String;
            2    7     4     l  Lorg/eclipse/jetty/util/thread/AutoLock;
      Exception table:
        from    to  target  type
           2     5       6  any
           1     8       8  any
    MethodParameters:
      Name  Flags
      key   

  public void setPort(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.eclipse.jetty.server.ShutdownMonitor this
        start local 1 // int port
         0: .line 205
            aconst_null
            astore 2
            aconst_null
            astore 3
         1: aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor._lock:Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            invokevirtual org.eclipse.jetty.util.thread.AutoLock$WithCondition.lock:()Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            astore 4 /* l */
        start local 4 // org.eclipse.jetty.util.thread.AutoLock l
         2: .line 207
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor.alive:Z
            ifeq 4
         3: .line 208
            new java.lang.IllegalStateException
            dup
            ldc "ShutdownMonitor already started"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 209
      StackMap locals: java.lang.Throwable java.lang.Throwable org.eclipse.jetty.util.thread.AutoLock
      StackMap stack:
            aload 0 /* this */
            iload 1 /* port */
            putfield org.eclipse.jetty.server.ShutdownMonitor.port:I
         5: .line 210
            aload 4 /* l */
            ifnull 11
            aload 4 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock.close:()V
            goto 11
      StackMap locals:
      StackMap stack: java.lang.Throwable
         6: astore 2
            aload 4 /* l */
            ifnull 7
            aload 4 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock.close:()V
        end local 4 // org.eclipse.jetty.util.thread.AutoLock l
      StackMap locals:
      StackMap stack:
         7: aload 2
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: astore 3
            aload 2
            ifnonnull 9
            aload 3
            astore 2
            goto 10
      StackMap locals:
      StackMap stack:
         9: aload 2
            aload 3
            if_acmpeq 10
            aload 2
            aload 3
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        10: aload 2
            athrow
        11: .line 211
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int port
        end local 0 // org.eclipse.jetty.server.ShutdownMonitor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lorg/eclipse/jetty/server/ShutdownMonitor;
            0   12     1  port  I
            2    7     4     l  Lorg/eclipse/jetty/util/thread/AutoLock;
      Exception table:
        from    to  target  type
           2     5       6  any
           1     8       8  any
    MethodParameters:
      Name  Flags
      port  

  protected void start();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=6, args_size=1
        start local 0 // org.eclipse.jetty.server.ShutdownMonitor this
         0: .line 215
            aconst_null
            astore 1
            aconst_null
            astore 2
         1: aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor._lock:Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            invokevirtual org.eclipse.jetty.util.thread.AutoLock$WithCondition.lock:()Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            astore 3 /* l */
        start local 3 // org.eclipse.jetty.util.thread.AutoLock l
         2: .line 217
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor.alive:Z
            ifeq 6
         3: .line 219
            aload 0 /* this */
            ldc "Already started"
            iconst_0
            anewarray java.lang.Object
            invokevirtual org.eclipse.jetty.server.ShutdownMonitor.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
         4: .line 231
            aload 3 /* l */
            ifnull 5
            aload 3 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock.close:()V
         5: .line 220
      StackMap locals: java.lang.Throwable java.lang.Throwable org.eclipse.jetty.util.thread.AutoLock
      StackMap stack:
            return
         6: .line 222
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.ShutdownMonitor.listen:()Ljava/net/ServerSocket;
            astore 4 /* serverSocket */
        start local 4 // java.net.ServerSocket serverSocket
         7: .line 223
            aload 4 /* serverSocket */
            ifnull 13
         8: .line 225
            aload 0 /* this */
            iconst_1
            putfield org.eclipse.jetty.server.ShutdownMonitor.alive:Z
         9: .line 226
            new java.lang.Thread
            dup
            new org.eclipse.jetty.server.ShutdownMonitor$ShutdownMonitorRunnable
            dup
            aload 0 /* this */
            aload 4 /* serverSocket */
            invokespecial org.eclipse.jetty.server.ShutdownMonitor$ShutdownMonitorRunnable.<init>:(Lorg/eclipse/jetty/server/ShutdownMonitor;Ljava/net/ServerSocket;)V
            invokespecial java.lang.Thread.<init>:(Ljava/lang/Runnable;)V
            astore 5 /* thread */
        start local 5 // java.lang.Thread thread
        10: .line 227
            aload 5 /* thread */
            iconst_1
            invokevirtual java.lang.Thread.setDaemon:(Z)V
        11: .line 228
            aload 5 /* thread */
            ldc "ShutdownMonitor"
            invokevirtual java.lang.Thread.setName:(Ljava/lang/String;)V
        12: .line 229
            aload 5 /* thread */
            invokevirtual java.lang.Thread.start:()V
        end local 5 // java.lang.Thread thread
        end local 4 // java.net.ServerSocket serverSocket
        13: .line 231
      StackMap locals:
      StackMap stack:
            aload 3 /* l */
            ifnull 19
            aload 3 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock.close:()V
            goto 19
      StackMap locals:
      StackMap stack: java.lang.Throwable
        14: astore 1
            aload 3 /* l */
            ifnull 15
            aload 3 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock.close:()V
        end local 3 // org.eclipse.jetty.util.thread.AutoLock l
      StackMap locals:
      StackMap stack:
        15: aload 1
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        16: astore 2
            aload 1
            ifnonnull 17
            aload 2
            astore 1
            goto 18
      StackMap locals:
      StackMap stack:
        17: aload 1
            aload 2
            if_acmpeq 18
            aload 1
            aload 2
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        18: aload 1
            athrow
        19: .line 232
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.jetty.server.ShutdownMonitor this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   20     0          this  Lorg/eclipse/jetty/server/ShutdownMonitor;
            2   15     3             l  Lorg/eclipse/jetty/util/thread/AutoLock;
            7   13     4  serverSocket  Ljava/net/ServerSocket;
           10   13     5        thread  Ljava/lang/Thread;
      Exception table:
        from    to  target  type
           2     4      14  any
           6    13      14  any
           1     5      16  any
           6    16      16  any
    Exceptions:
      throws java.lang.Exception

  private void stop();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // org.eclipse.jetty.server.ShutdownMonitor this
         0: .line 236
            aconst_null
            astore 1
            aconst_null
            astore 2
         1: aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor._lock:Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            invokevirtual org.eclipse.jetty.util.thread.AutoLock$WithCondition.lock:()Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            astore 3 /* l */
        start local 3 // org.eclipse.jetty.util.thread.AutoLock$WithCondition l
         2: .line 238
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jetty.server.ShutdownMonitor.alive:Z
         3: .line 239
            aload 3 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock$WithCondition.signalAll:()V
         4: .line 240
            aload 3 /* l */
            ifnull 10
            aload 3 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock$WithCondition.close:()V
            goto 10
      StackMap locals: org.eclipse.jetty.server.ShutdownMonitor java.lang.Throwable java.lang.Throwable org.eclipse.jetty.util.thread.AutoLock$WithCondition
      StackMap stack: java.lang.Throwable
         5: astore 1
            aload 3 /* l */
            ifnull 6
            aload 3 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock$WithCondition.close:()V
        end local 3 // org.eclipse.jetty.util.thread.AutoLock$WithCondition l
      StackMap locals:
      StackMap stack:
         6: aload 1
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
         7: astore 2
            aload 1
            ifnonnull 8
            aload 2
            astore 1
            goto 9
      StackMap locals:
      StackMap stack:
         8: aload 1
            aload 2
            if_acmpeq 9
            aload 1
            aload 2
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
         9: aload 1
            athrow
        10: .line 241
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.jetty.server.ShutdownMonitor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/eclipse/jetty/server/ShutdownMonitor;
            2    6     3     l  Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
      Exception table:
        from    to  target  type
           2     4       5  any
           1     7       7  any

  void await();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // org.eclipse.jetty.server.ShutdownMonitor this
         0: .line 246
            aconst_null
            astore 1
            aconst_null
            astore 2
         1: aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor._lock:Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            invokevirtual org.eclipse.jetty.util.thread.AutoLock$WithCondition.lock:()Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            astore 3 /* l */
        start local 3 // org.eclipse.jetty.util.thread.AutoLock$WithCondition l
         2: .line 248
            goto 4
         3: .line 250
      StackMap locals: java.lang.Throwable java.lang.Throwable org.eclipse.jetty.util.thread.AutoLock$WithCondition
      StackMap stack:
            aload 3 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock$WithCondition.await:()V
         4: .line 248
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor.alive:Z
            ifne 3
         5: .line 252
            aload 3 /* l */
            ifnull 11
            aload 3 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock$WithCondition.close:()V
            goto 11
      StackMap locals:
      StackMap stack: java.lang.Throwable
         6: astore 1
            aload 3 /* l */
            ifnull 7
            aload 3 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock$WithCondition.close:()V
        end local 3 // org.eclipse.jetty.util.thread.AutoLock$WithCondition l
      StackMap locals:
      StackMap stack:
         7: aload 1
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: astore 2
            aload 1
            ifnonnull 9
            aload 2
            astore 1
            goto 10
      StackMap locals:
      StackMap stack:
         9: aload 1
            aload 2
            if_acmpeq 10
            aload 1
            aload 2
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        10: aload 1
            athrow
        11: .line 253
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.jetty.server.ShutdownMonitor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lorg/eclipse/jetty/server/ShutdownMonitor;
            2    7     3     l  Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
      Exception table:
        from    to  target  type
           2     5       6  any
           1     8       8  any
    Exceptions:
      throws java.lang.InterruptedException

  protected boolean isAlive();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // org.eclipse.jetty.server.ShutdownMonitor this
         0: .line 257
            aconst_null
            astore 1
            aconst_null
            astore 2
         1: aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor._lock:Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            invokevirtual org.eclipse.jetty.util.thread.AutoLock$WithCondition.lock:()Lorg/eclipse/jetty/util/thread/AutoLock$WithCondition;
            astore 3 /* l */
        start local 3 // org.eclipse.jetty.util.thread.AutoLock l
         2: .line 259
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor.alive:Z
         3: .line 260
            aload 3 /* l */
            ifnull 4
            aload 3 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock.close:()V
         4: .line 259
      StackMap locals: org.eclipse.jetty.server.ShutdownMonitor java.lang.Throwable java.lang.Throwable org.eclipse.jetty.util.thread.AutoLock
      StackMap stack: int
            ireturn
      StackMap locals:
      StackMap stack: java.lang.Throwable
         5: astore 1
         6: .line 260
            aload 3 /* l */
            ifnull 7
            aload 3 /* l */
            invokevirtual org.eclipse.jetty.util.thread.AutoLock.close:()V
        end local 3 // org.eclipse.jetty.util.thread.AutoLock l
      StackMap locals:
      StackMap stack:
         7: aload 1
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: astore 2
            aload 1
            ifnonnull 9
            aload 2
            astore 1
            goto 10
      StackMap locals:
      StackMap stack:
         9: aload 1
            aload 2
            if_acmpeq 10
            aload 1
            aload 2
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        10: aload 1
            athrow
        end local 0 // org.eclipse.jetty.server.ShutdownMonitor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/eclipse/jetty/server/ShutdownMonitor;
            2    7     3     l  Lorg/eclipse/jetty/util/thread/AutoLock;
      Exception table:
        from    to  target  type
           2     3       5  any
           1     4       8  any
           5     8       8  any

  private java.net.ServerSocket listen();
    descriptor: ()Ljava/net/ServerSocket;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=6, args_size=1
        start local 0 // org.eclipse.jetty.server.ShutdownMonitor this
         0: .line 265
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.ShutdownMonitor.getPort:()I
            istore 1 /* port */
        start local 1 // int port
         1: .line 266
            iload 1 /* port */
            ifge 4
         2: .line 268
            aload 0 /* this */
            ldc "Not enabled (port < 0): %d"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            iload 1 /* port */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokevirtual org.eclipse.jetty.server.ShutdownMonitor.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
         3: .line 269
            aconst_null
            areturn
         4: .line 272
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.ShutdownMonitor.getKey:()Ljava/lang/String;
            astore 2 /* key */
        start local 2 // java.lang.String key
         5: .line 275
            new java.net.ServerSocket
            dup
            invokespecial java.net.ServerSocket.<init>:()V
            astore 3 /* serverSocket */
        start local 3 // java.net.ServerSocket serverSocket
         6: .line 276
            aload 3 /* serverSocket */
            iconst_1
            invokevirtual java.net.ServerSocket.setReuseAddress:(Z)V
         7: .line 277
            aload 3 /* serverSocket */
            new java.net.InetSocketAddress
            dup
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ShutdownMonitor.host:Ljava/lang/String;
            invokestatic java.net.InetAddress.getByName:(Ljava/lang/String;)Ljava/net/InetAddress;
            iload 1 /* port */
            invokespecial java.net.InetSocketAddress.<init>:(Ljava/net/InetAddress;I)V
            invokevirtual java.net.ServerSocket.bind:(Ljava/net/SocketAddress;)V
         8: .line 278
            iload 1 /* port */
            ifne 12
         9: .line 280
            aload 3 /* serverSocket */
            invokevirtual java.net.ServerSocket.getLocalPort:()I
            istore 1 /* port */
        10: .line 281
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            ldc "STOP.PORT=%d%n"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            iload 1 /* port */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokevirtual java.io.PrintStream.printf:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintStream;
            pop
        11: .line 282
            aload 0 /* this */
            iload 1 /* port */
            invokevirtual org.eclipse.jetty.server.ShutdownMonitor.setPort:(I)V
        12: .line 285
      StackMap locals: java.lang.String java.net.ServerSocket
      StackMap stack:
            aload 2 /* key */
            ifnonnull 16
        13: .line 287
            ldc 9.223372036854776E18
            invokestatic java.lang.Math.random:()D
            dmul
            aload 0 /* this */
            invokevirtual java.lang.Object.hashCode:()I
            i2d
            dadd
            invokestatic java.lang.System.currentTimeMillis:()J
            l2d
            dadd
            d2l
            bipush 36
            invokestatic java.lang.Long.toString:(JI)Ljava/lang/String;
            astore 2 /* key */
        14: .line 288
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            ldc "STOP.KEY=%s%n"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 2 /* key */
            aastore
            invokevirtual java.io.PrintStream.printf:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintStream;
            pop
        15: .line 289
            aload 0 /* this */
            aload 2 /* key */
            invokevirtual org.eclipse.jetty.server.ShutdownMonitor.setKey:(Ljava/lang/String;)V
        16: .line 292
      StackMap locals:
      StackMap stack:
            aload 3 /* serverSocket */
            astore 5
        17: .line 303
            aload 0 /* this */
            ldc "STOP.PORT=%d"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            iload 1 /* port */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokevirtual org.eclipse.jetty.server.ShutdownMonitor.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
        18: .line 304
            aload 0 /* this */
            ldc "STOP.KEY=%s"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 2 /* key */
            aastore
            invokevirtual org.eclipse.jetty.server.ShutdownMonitor.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
        19: .line 292
            aload 5
            areturn
        end local 3 // java.net.ServerSocket serverSocket
        20: .line 294
      StackMap locals: org.eclipse.jetty.server.ShutdownMonitor int java.lang.String
      StackMap stack: java.lang.Throwable
            astore 3 /* x */
        start local 3 // java.lang.Throwable x
        21: .line 296
            aload 0 /* this */
            aload 3 /* x */
            invokevirtual org.eclipse.jetty.server.ShutdownMonitor.debug:(Ljava/lang/Throwable;)V
        22: .line 297
            getstatic java.lang.System.err:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Error binding ShutdownMonitor to port "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* port */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ": "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 3 /* x */
            invokevirtual java.lang.Throwable.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
        23: .line 303
            aload 0 /* this */
            ldc "STOP.PORT=%d"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            iload 1 /* port */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokevirtual org.eclipse.jetty.server.ShutdownMonitor.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
        24: .line 304
            aload 0 /* this */
            ldc "STOP.KEY=%s"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 2 /* key */
            aastore
            invokevirtual org.eclipse.jetty.server.ShutdownMonitor.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
        25: .line 298
            aconst_null
            areturn
        end local 3 // java.lang.Throwable x
        26: .line 301
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 4
        27: .line 303
            aload 0 /* this */
            ldc "STOP.PORT=%d"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            iload 1 /* port */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokevirtual org.eclipse.jetty.server.ShutdownMonitor.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
        28: .line 304
            aload 0 /* this */
            ldc "STOP.KEY=%s"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 2 /* key */
            aastore
            invokevirtual org.eclipse.jetty.server.ShutdownMonitor.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
        29: .line 305
            aload 4
            athrow
        end local 2 // java.lang.String key
        end local 1 // int port
        end local 0 // org.eclipse.jetty.server.ShutdownMonitor this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   30     0          this  Lorg/eclipse/jetty/server/ShutdownMonitor;
            1   30     1          port  I
            5   30     2           key  Ljava/lang/String;
            6   20     3  serverSocket  Ljava/net/ServerSocket;
           21   26     3             x  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           5    17      20  Class java.lang.Throwable
           5    17      26  any
          20    23      26  any

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.ShutdownMonitor this
         0: .line 311
            ldc "%s[port=%d,alive=%b]"
            iconst_3
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.ShutdownMonitor.getPort:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_2
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.ShutdownMonitor.isAlive:()Z
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.jetty.server.ShutdownMonitor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/ShutdownMonitor;
}
SourceFile: "ShutdownMonitor.java"
NestMembers:
  org.eclipse.jetty.server.ShutdownMonitor$Holder  org.eclipse.jetty.server.ShutdownMonitor$ShutdownMonitorRunnable
InnerClasses:
  private Holder = org.eclipse.jetty.server.ShutdownMonitor$Holder of org.eclipse.jetty.server.ShutdownMonitor
  private ShutdownMonitorRunnable = org.eclipse.jetty.server.ShutdownMonitor$ShutdownMonitorRunnable of org.eclipse.jetty.server.ShutdownMonitor
  public WithCondition = org.eclipse.jetty.util.thread.AutoLock$WithCondition of org.eclipse.jetty.util.thread.AutoLock