class com.microsoft.sqlserver.jdbc.ActivityId
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.microsoft.sqlserver.jdbc.ActivityId
  super_class: java.lang.Object
{
  private final java.util.UUID id;
    descriptor: Ljava/util/UUID;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private long sequence;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

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

  void <init>(java.lang.Thread);
    descriptor: (Ljava/lang/Thread;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.microsoft.sqlserver.jdbc.ActivityId this
        start local 1 // java.lang.Thread thread
         0: .line 71
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 72
            aload 0 /* this */
            invokestatic java.util.UUID.randomUUID:()Ljava/util/UUID;
            putfield com.microsoft.sqlserver.jdbc.ActivityId.id:Ljava/util/UUID;
         2: .line 73
            aload 0 /* this */
            aload 1 /* thread */
            putfield com.microsoft.sqlserver.jdbc.ActivityId.thread:Ljava/lang/Thread;
         3: .line 74
            aload 0 /* this */
            lconst_0
            putfield com.microsoft.sqlserver.jdbc.ActivityId.sequence:J
         4: .line 75
            aload 0 /* this */
            iconst_0
            putfield com.microsoft.sqlserver.jdbc.ActivityId.isSentToServer:Z
         5: .line 76
            return
        end local 1 // java.lang.Thread thread
        end local 0 // com.microsoft.sqlserver.jdbc.ActivityId this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lcom/microsoft/sqlserver/jdbc/ActivityId;
            0    6     1  thread  Ljava/lang/Thread;
    MethodParameters:
        Name  Flags
      thread  

  java.lang.Thread getThread();
    descriptor: ()Ljava/lang/Thread;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.sqlserver.jdbc.ActivityId this
         0: .line 79
            aload 0 /* this */
            getfield com.microsoft.sqlserver.jdbc.ActivityId.thread:Ljava/lang/Thread;
            areturn
        end local 0 // com.microsoft.sqlserver.jdbc.ActivityId this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/sqlserver/jdbc/ActivityId;

  java.util.UUID getId();
    descriptor: ()Ljava/util/UUID;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.sqlserver.jdbc.ActivityId this
         0: .line 83
            aload 0 /* this */
            getfield com.microsoft.sqlserver.jdbc.ActivityId.id:Ljava/util/UUID;
            areturn
        end local 0 // com.microsoft.sqlserver.jdbc.ActivityId this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/sqlserver/jdbc/ActivityId;

  long getSequence();
    descriptor: ()J
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.microsoft.sqlserver.jdbc.ActivityId this
         0: .line 87
            aload 0 /* this */
            getfield com.microsoft.sqlserver.jdbc.ActivityId.sequence:J
            lreturn
        end local 0 // com.microsoft.sqlserver.jdbc.ActivityId this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/sqlserver/jdbc/ActivityId;

  void increment();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.microsoft.sqlserver.jdbc.ActivityId this
         0: .line 91
            aload 0 /* this */
            getfield com.microsoft.sqlserver.jdbc.ActivityId.sequence:J
            ldc 4294967295
            lcmp
            ifge 3
         1: .line 93
            aload 0 /* this */
            dup
            getfield com.microsoft.sqlserver.jdbc.ActivityId.sequence:J
            lconst_1
            ladd
            putfield com.microsoft.sqlserver.jdbc.ActivityId.sequence:J
         2: .line 94
            goto 4
         3: .line 95
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lconst_0
            putfield com.microsoft.sqlserver.jdbc.ActivityId.sequence:J
         4: .line 98
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.microsoft.sqlserver.jdbc.ActivityId.isSentToServer:Z
         5: .line 99
            return
        end local 0 // com.microsoft.sqlserver.jdbc.ActivityId this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/microsoft/sqlserver/jdbc/ActivityId;

  void setSentFlag();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.microsoft.sqlserver.jdbc.ActivityId this
         0: .line 102
            aload 0 /* this */
            iconst_1
            putfield com.microsoft.sqlserver.jdbc.ActivityId.isSentToServer:Z
         1: .line 103
            return
        end local 0 // com.microsoft.sqlserver.jdbc.ActivityId this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/microsoft/sqlserver/jdbc/ActivityId;

  boolean isSentToServer();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.sqlserver.jdbc.ActivityId this
         0: .line 106
            aload 0 /* this */
            getfield com.microsoft.sqlserver.jdbc.ActivityId.isSentToServer:Z
            ireturn
        end local 0 // com.microsoft.sqlserver.jdbc.ActivityId this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/sqlserver/jdbc/ActivityId;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.microsoft.sqlserver.jdbc.ActivityId this
         0: .line 111
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* sb */
        start local 1 // java.lang.StringBuilder sb
         1: .line 112
            aload 1 /* sb */
            aload 0 /* this */
            getfield com.microsoft.sqlserver.jdbc.ActivityId.id:Ljava/util/UUID;
            invokevirtual java.util.UUID.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         2: .line 113
            aload 1 /* sb */
            ldc "-"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         3: .line 114
            aload 1 /* sb */
            aload 0 /* this */
            getfield com.microsoft.sqlserver.jdbc.ActivityId.sequence:J
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            pop
         4: .line 115
            aload 1 /* sb */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder sb
        end local 0 // com.microsoft.sqlserver.jdbc.ActivityId this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/microsoft/sqlserver/jdbc/ActivityId;
            1    5     1    sb  Ljava/lang/StringBuilder;
}
SourceFile: "ActivityCorrelator.java"