public class org.jboss.resteasy.core.SynchronousExecutionContext extends org.jboss.resteasy.core.AbstractExecutionContext
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jboss.resteasy.core.SynchronousExecutionContext
  super_class: org.jboss.resteasy.core.AbstractExecutionContext
{
  protected final java.util.concurrent.CountDownLatch syncLatch;
    descriptor: Ljava/util/concurrent/CountDownLatch;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected long timeout;
    descriptor: J
    flags: (0x0004) ACC_PROTECTED

  protected java.util.concurrent.TimeUnit timeoutUnit;
    descriptor: Ljava/util/concurrent/TimeUnit;
    flags: (0x0004) ACC_PROTECTED

  protected boolean wasSuspended;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  protected volatile boolean done;
    descriptor: Z
    flags: (0x0044) ACC_PROTECTED, ACC_VOLATILE

  protected java.lang.Object responseLock;
    descriptor: Ljava/lang/Object;
    flags: (0x0004) ACC_PROTECTED

  protected org.jboss.resteasy.spi.ResteasyAsynchronousResponse asynchronousResponse;
    descriptor: Lorg/jboss/resteasy/spi/ResteasyAsynchronousResponse;
    flags: (0x0004) ACC_PROTECTED

  public void <init>(org.jboss.resteasy.core.SynchronousDispatcher, org.jboss.resteasy.spi.HttpRequest, org.jboss.resteasy.spi.HttpResponse);
    descriptor: (Lorg/jboss/resteasy/core/SynchronousDispatcher;Lorg/jboss/resteasy/spi/HttpRequest;Lorg/jboss/resteasy/spi/HttpResponse;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.jboss.resteasy.core.SynchronousExecutionContext this
        start local 1 // org.jboss.resteasy.core.SynchronousDispatcher dispatcher
        start local 2 // org.jboss.resteasy.spi.HttpRequest request
        start local 3 // org.jboss.resteasy.spi.HttpResponse response
         0: .line 29
            aload 0 /* this */
            aload 1 /* dispatcher */
            aload 2 /* request */
            aload 3 /* response */
            invokespecial org.jboss.resteasy.core.AbstractExecutionContext.<init>:(Lorg/jboss/resteasy/core/SynchronousDispatcher;Lorg/jboss/resteasy/spi/HttpRequest;Lorg/jboss/resteasy/spi/HttpResponse;)V
         1: .line 19
            aload 0 /* this */
            new java.util.concurrent.CountDownLatch
            dup
            iconst_1
            invokespecial java.util.concurrent.CountDownLatch.<init>:(I)V
            putfield org.jboss.resteasy.core.SynchronousExecutionContext.syncLatch:Ljava/util/concurrent/CountDownLatch;
         2: .line 21
            aload 0 /* this */
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
            putfield org.jboss.resteasy.core.SynchronousExecutionContext.timeoutUnit:Ljava/util/concurrent/TimeUnit;
         3: .line 24
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield org.jboss.resteasy.core.SynchronousExecutionContext.responseLock:Ljava/lang/Object;
         4: .line 30
            return
        end local 3 // org.jboss.resteasy.spi.HttpResponse response
        end local 2 // org.jboss.resteasy.spi.HttpRequest request
        end local 1 // org.jboss.resteasy.core.SynchronousDispatcher dispatcher
        end local 0 // org.jboss.resteasy.core.SynchronousExecutionContext this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lorg/jboss/resteasy/core/SynchronousExecutionContext;
            0    5     1  dispatcher  Lorg/jboss/resteasy/core/SynchronousDispatcher;
            0    5     2     request  Lorg/jboss/resteasy/spi/HttpRequest;
            0    5     3    response  Lorg/jboss/resteasy/spi/HttpResponse;
    MethodParameters:
            Name  Flags
      dispatcher  final
      request     final
      response    final

  public org.jboss.resteasy.spi.ResteasyAsynchronousResponse suspend();
    descriptor: ()Lorg/jboss/resteasy/spi/ResteasyAsynchronousResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.jboss.resteasy.core.SynchronousExecutionContext this
         0: .line 35
            aload 0 /* this */
            ldc -1
            invokevirtual org.jboss.resteasy.core.SynchronousExecutionContext.suspend:(J)Lorg/jboss/resteasy/spi/ResteasyAsynchronousResponse;
            areturn
        end local 0 // org.jboss.resteasy.core.SynchronousExecutionContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jboss/resteasy/core/SynchronousExecutionContext;
    Exceptions:
      throws java.lang.IllegalStateException

  public org.jboss.resteasy.spi.ResteasyAsynchronousResponse suspend(long);
    descriptor: (J)Lorg/jboss/resteasy/spi/ResteasyAsynchronousResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.jboss.resteasy.core.SynchronousExecutionContext this
        start local 1 // long millis
         0: .line 41
            aload 0 /* this */
            lload 1 /* millis */
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
            invokevirtual org.jboss.resteasy.core.SynchronousExecutionContext.suspend:(JLjava/util/concurrent/TimeUnit;)Lorg/jboss/resteasy/spi/ResteasyAsynchronousResponse;
            areturn
        end local 1 // long millis
        end local 0 // org.jboss.resteasy.core.SynchronousExecutionContext this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/jboss/resteasy/core/SynchronousExecutionContext;
            0    1     1  millis  J
    Exceptions:
      throws java.lang.IllegalStateException
    MethodParameters:
        Name  Flags
      millis  

  public org.jboss.resteasy.spi.ResteasyAsynchronousResponse suspend(long, java.util.concurrent.TimeUnit);
    descriptor: (JLjava/util/concurrent/TimeUnit;)Lorg/jboss/resteasy/spi/ResteasyAsynchronousResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=3
        start local 0 // org.jboss.resteasy.core.SynchronousExecutionContext this
        start local 1 // long time
        start local 3 // java.util.concurrent.TimeUnit unit
         0: .line 47
            aload 0 /* this */
            iconst_1
            putfield org.jboss.resteasy.core.SynchronousExecutionContext.wasSuspended:Z
         1: .line 48
            aload 0 /* this */
            new org.jboss.resteasy.core.SynchronousExecutionContext$SynchronousAsynchronousResponse
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.jboss.resteasy.core.SynchronousExecutionContext.dispatcher:Lorg/jboss/resteasy/core/SynchronousDispatcher;
            aload 0 /* this */
            getfield org.jboss.resteasy.core.SynchronousExecutionContext.request:Lorg/jboss/resteasy/spi/HttpRequest;
            aload 0 /* this */
            getfield org.jboss.resteasy.core.SynchronousExecutionContext.response:Lorg/jboss/resteasy/spi/HttpResponse;
            invokespecial org.jboss.resteasy.core.SynchronousExecutionContext$SynchronousAsynchronousResponse.<init>:(Lorg/jboss/resteasy/core/SynchronousExecutionContext;Lorg/jboss/resteasy/core/SynchronousDispatcher;Lorg/jboss/resteasy/spi/HttpRequest;Lorg/jboss/resteasy/spi/HttpResponse;)V
            putfield org.jboss.resteasy.core.SynchronousExecutionContext.asynchronousResponse:Lorg/jboss/resteasy/spi/ResteasyAsynchronousResponse;
         2: .line 49
            aload 0 /* this */
            getfield org.jboss.resteasy.core.SynchronousExecutionContext.asynchronousResponse:Lorg/jboss/resteasy/spi/ResteasyAsynchronousResponse;
            lload 1 /* time */
            aload 3 /* unit */
            invokeinterface org.jboss.resteasy.spi.ResteasyAsynchronousResponse.setTimeout:(JLjava/util/concurrent/TimeUnit;)Z
            pop
         3: .line 50
            aload 0 /* this */
            getfield org.jboss.resteasy.core.SynchronousExecutionContext.asynchronousResponse:Lorg/jboss/resteasy/spi/ResteasyAsynchronousResponse;
            areturn
        end local 3 // java.util.concurrent.TimeUnit unit
        end local 1 // long time
        end local 0 // org.jboss.resteasy.core.SynchronousExecutionContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/jboss/resteasy/core/SynchronousExecutionContext;
            0    4     1  time  J
            0    4     3  unit  Ljava/util/concurrent/TimeUnit;
    Exceptions:
      throws java.lang.IllegalStateException
    MethodParameters:
      Name  Flags
      time  
      unit  

  public org.jboss.resteasy.spi.ResteasyAsynchronousResponse getAsyncResponse();
    descriptor: ()Lorg/jboss/resteasy/spi/ResteasyAsynchronousResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jboss.resteasy.core.SynchronousExecutionContext this
         0: .line 56
            aload 0 /* this */
            getfield org.jboss.resteasy.core.SynchronousExecutionContext.asynchronousResponse:Lorg/jboss/resteasy/spi/ResteasyAsynchronousResponse;
            areturn
        end local 0 // org.jboss.resteasy.core.SynchronousExecutionContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jboss/resteasy/core/SynchronousExecutionContext;

  public boolean isSuspended();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jboss.resteasy.core.SynchronousExecutionContext this
         0: .line 62
            aload 0 /* this */
            getfield org.jboss.resteasy.core.SynchronousExecutionContext.wasSuspended:Z
            ireturn
        end local 0 // org.jboss.resteasy.core.SynchronousExecutionContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jboss/resteasy/core/SynchronousExecutionContext;
}
SourceFile: "SynchronousExecutionContext.java"
NestMembers:
  org.jboss.resteasy.core.SynchronousExecutionContext$SynchronousAsynchronousResponse
InnerClasses:
  protected SynchronousAsynchronousResponse = org.jboss.resteasy.core.SynchronousExecutionContext$SynchronousAsynchronousResponse of org.jboss.resteasy.core.SynchronousExecutionContext