public final class org.apache.lucene.util.SameThreadExecutorService extends java.util.concurrent.AbstractExecutorService
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.apache.lucene.util.SameThreadExecutorService
  super_class: java.util.concurrent.AbstractExecutorService
{
  private volatile boolean shutdown;
    descriptor: Z
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.SameThreadExecutorService this
         0: .line 28
            aload 0 /* this */
            invokespecial java.util.concurrent.AbstractExecutorService.<init>:()V
            return
        end local 0 // org.apache.lucene.util.SameThreadExecutorService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/SameThreadExecutorService;

  public void execute(java.lang.Runnable);
    descriptor: (Ljava/lang/Runnable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.apache.lucene.util.SameThreadExecutorService this
        start local 1 // java.lang.Runnable command
         0: .line 33
            aload 0 /* this */
            invokevirtual org.apache.lucene.util.SameThreadExecutorService.checkShutdown:()V
         1: .line 34
            aload 1 /* command */
            invokeinterface java.lang.Runnable.run:()V
         2: .line 35
            return
        end local 1 // java.lang.Runnable command
        end local 0 // org.apache.lucene.util.SameThreadExecutorService this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/apache/lucene/util/SameThreadExecutorService;
            0    3     1  command  Ljava/lang/Runnable;
    MethodParameters:
         Name  Flags
      command  

  public java.util.List<java.lang.Runnable> shutdownNow();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.SameThreadExecutorService this
         0: .line 39
            aload 0 /* this */
            invokevirtual org.apache.lucene.util.SameThreadExecutorService.shutdown:()V
         1: .line 40
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
            areturn
        end local 0 // org.apache.lucene.util.SameThreadExecutorService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/lucene/util/SameThreadExecutorService;
    Signature: ()Ljava/util/List<Ljava/lang/Runnable;>;

  public void shutdown();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.SameThreadExecutorService this
         0: .line 45
            aload 0 /* this */
            iconst_1
            putfield org.apache.lucene.util.SameThreadExecutorService.shutdown:Z
         1: .line 46
            return
        end local 0 // org.apache.lucene.util.SameThreadExecutorService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/lucene/util/SameThreadExecutorService;

  public boolean isTerminated();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.SameThreadExecutorService this
         0: .line 52
            aload 0 /* this */
            getfield org.apache.lucene.util.SameThreadExecutorService.shutdown:Z
            ireturn
        end local 0 // org.apache.lucene.util.SameThreadExecutorService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/SameThreadExecutorService;

  public boolean isShutdown();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.SameThreadExecutorService this
         0: .line 57
            aload 0 /* this */
            getfield org.apache.lucene.util.SameThreadExecutorService.shutdown:Z
            ireturn
        end local 0 // org.apache.lucene.util.SameThreadExecutorService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/SameThreadExecutorService;

  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 // org.apache.lucene.util.SameThreadExecutorService this
        start local 1 // long timeout
        start local 3 // java.util.concurrent.TimeUnit unit
         0: .line 63
            iconst_1
            ireturn
        end local 3 // java.util.concurrent.TimeUnit unit
        end local 1 // long timeout
        end local 0 // org.apache.lucene.util.SameThreadExecutorService this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/apache/lucene/util/SameThreadExecutorService;
            0    1     1  timeout  J
            0    1     3     unit  Ljava/util/concurrent/TimeUnit;
    Exceptions:
      throws java.lang.InterruptedException
    MethodParameters:
         Name  Flags
      timeout  
      unit     

  private void checkShutdown();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.SameThreadExecutorService this
         0: .line 67
            aload 0 /* this */
            getfield org.apache.lucene.util.SameThreadExecutorService.shutdown:Z
            ifeq 2
         1: .line 68
            new java.util.concurrent.RejectedExecutionException
            dup
            ldc "Executor is shut down."
            invokespecial java.util.concurrent.RejectedExecutionException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 70
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.lucene.util.SameThreadExecutorService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/lucene/util/SameThreadExecutorService;
}
SourceFile: "SameThreadExecutorService.java"