public class org.apache.coyote.RequestGroupInfo extends org.apache.tomcat.util.modeler.BaseModelMBean
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.coyote.RequestGroupInfo
  super_class: org.apache.tomcat.util.modeler.BaseModelMBean
{
  private final java.util.List<org.apache.coyote.RequestInfo> processors;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lorg/apache/coyote/RequestInfo;>;

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

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

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

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

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

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.coyote.RequestGroupInfo this
         0: .line 28
            aload 0 /* this */
            invokespecial org.apache.tomcat.util.modeler.BaseModelMBean.<init>:()V
         1: .line 29
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.apache.coyote.RequestGroupInfo.processors:Ljava/util/List;
         2: .line 30
            aload 0 /* this */
            lconst_0
            putfield org.apache.coyote.RequestGroupInfo.deadMaxTime:J
         3: .line 31
            aload 0 /* this */
            lconst_0
            putfield org.apache.coyote.RequestGroupInfo.deadProcessingTime:J
         4: .line 32
            aload 0 /* this */
            iconst_0
            putfield org.apache.coyote.RequestGroupInfo.deadRequestCount:I
         5: .line 33
            aload 0 /* this */
            iconst_0
            putfield org.apache.coyote.RequestGroupInfo.deadErrorCount:I
         6: .line 34
            aload 0 /* this */
            lconst_0
            putfield org.apache.coyote.RequestGroupInfo.deadBytesReceived:J
         7: .line 35
            aload 0 /* this */
            lconst_0
            putfield org.apache.coyote.RequestGroupInfo.deadBytesSent:J
         8: .line 28
            return
        end local 0 // org.apache.coyote.RequestGroupInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/apache/coyote/RequestGroupInfo;

  public synchronized void addRequestProcessor(org.apache.coyote.RequestInfo);
    descriptor: (Lorg/apache/coyote/RequestInfo;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.coyote.RequestGroupInfo this
        start local 1 // org.apache.coyote.RequestInfo rp
         0: .line 38
            aload 0 /* this */
            getfield org.apache.coyote.RequestGroupInfo.processors:Ljava/util/List;
            aload 1 /* rp */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 39
            return
        end local 1 // org.apache.coyote.RequestInfo rp
        end local 0 // org.apache.coyote.RequestGroupInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/coyote/RequestGroupInfo;
            0    2     1    rp  Lorg/apache/coyote/RequestInfo;
    MethodParameters:
      Name  Flags
      rp    

  public synchronized void removeRequestProcessor(org.apache.coyote.RequestInfo);
    descriptor: (Lorg/apache/coyote/RequestInfo;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.apache.coyote.RequestGroupInfo this
        start local 1 // org.apache.coyote.RequestInfo rp
         0: .line 42
            aload 1 /* rp */
            ifnull 9
         1: .line 43
            aload 0 /* this */
            getfield org.apache.coyote.RequestGroupInfo.deadMaxTime:J
            aload 1 /* rp */
            invokevirtual org.apache.coyote.RequestInfo.getMaxTime:()J
            lcmp
            ifge 3
         2: .line 44
            aload 0 /* this */
            aload 1 /* rp */
            invokevirtual org.apache.coyote.RequestInfo.getMaxTime:()J
            putfield org.apache.coyote.RequestGroupInfo.deadMaxTime:J
         3: .line 45
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.apache.coyote.RequestGroupInfo.deadProcessingTime:J
            aload 1 /* rp */
            invokevirtual org.apache.coyote.RequestInfo.getProcessingTime:()J
            ladd
            putfield org.apache.coyote.RequestGroupInfo.deadProcessingTime:J
         4: .line 46
            aload 0 /* this */
            dup
            getfield org.apache.coyote.RequestGroupInfo.deadRequestCount:I
            aload 1 /* rp */
            invokevirtual org.apache.coyote.RequestInfo.getRequestCount:()I
            iadd
            putfield org.apache.coyote.RequestGroupInfo.deadRequestCount:I
         5: .line 47
            aload 0 /* this */
            dup
            getfield org.apache.coyote.RequestGroupInfo.deadErrorCount:I
            aload 1 /* rp */
            invokevirtual org.apache.coyote.RequestInfo.getErrorCount:()I
            iadd
            putfield org.apache.coyote.RequestGroupInfo.deadErrorCount:I
         6: .line 48
            aload 0 /* this */
            dup
            getfield org.apache.coyote.RequestGroupInfo.deadBytesReceived:J
            aload 1 /* rp */
            invokevirtual org.apache.coyote.RequestInfo.getBytesReceived:()J
            ladd
            putfield org.apache.coyote.RequestGroupInfo.deadBytesReceived:J
         7: .line 49
            aload 0 /* this */
            dup
            getfield org.apache.coyote.RequestGroupInfo.deadBytesSent:J
            aload 1 /* rp */
            invokevirtual org.apache.coyote.RequestInfo.getBytesSent:()J
            ladd
            putfield org.apache.coyote.RequestGroupInfo.deadBytesSent:J
         8: .line 51
            aload 0 /* this */
            getfield org.apache.coyote.RequestGroupInfo.processors:Ljava/util/List;
            aload 1 /* rp */
            invokeinterface java.util.List.remove:(Ljava/lang/Object;)Z
            pop
         9: .line 53
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.apache.coyote.RequestInfo rp
        end local 0 // org.apache.coyote.RequestGroupInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/apache/coyote/RequestGroupInfo;
            0   10     1    rp  Lorg/apache/coyote/RequestInfo;
    MethodParameters:
      Name  Flags
      rp    

  public synchronized long getMaxTime();
    descriptor: ()J
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // org.apache.coyote.RequestGroupInfo this
         0: .line 56
            aload 0 /* this */
            getfield org.apache.coyote.RequestGroupInfo.deadMaxTime:J
            lstore 1 /* maxTime */
        start local 1 // long maxTime
         1: .line 57
            aload 0 /* this */
            getfield org.apache.coyote.RequestGroupInfo.processors:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: org.apache.coyote.RequestGroupInfo long top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.coyote.RequestInfo
            astore 3 /* rp */
        start local 3 // org.apache.coyote.RequestInfo rp
         3: .line 58
            lload 1 /* maxTime */
            aload 3 /* rp */
            invokevirtual org.apache.coyote.RequestInfo.getMaxTime:()J
            lcmp
            ifge 5
         4: .line 59
            aload 3 /* rp */
            invokevirtual org.apache.coyote.RequestInfo.getMaxTime:()J
            lstore 1 /* maxTime */
        end local 3 // org.apache.coyote.RequestInfo rp
         5: .line 57
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         6: .line 62
            lload 1 /* maxTime */
            lreturn
        end local 1 // long maxTime
        end local 0 // org.apache.coyote.RequestGroupInfo this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lorg/apache/coyote/RequestGroupInfo;
            1    7     1  maxTime  J
            3    5     3       rp  Lorg/apache/coyote/RequestInfo;

  public synchronized void setMaxTime(long);
    descriptor: (J)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.apache.coyote.RequestGroupInfo this
        start local 1 // long maxTime
         0: .line 67
            aload 0 /* this */
            lload 1 /* maxTime */
            putfield org.apache.coyote.RequestGroupInfo.deadMaxTime:J
         1: .line 68
            aload 0 /* this */
            getfield org.apache.coyote.RequestGroupInfo.processors:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: org.apache.coyote.RequestGroupInfo long top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.coyote.RequestInfo
            astore 3 /* rp */
        start local 3 // org.apache.coyote.RequestInfo rp
         3: .line 69
            aload 3 /* rp */
            lload 1 /* maxTime */
            invokevirtual org.apache.coyote.RequestInfo.setMaxTime:(J)V
        end local 3 // org.apache.coyote.RequestInfo rp
         4: .line 68
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 71
            return
        end local 1 // long maxTime
        end local 0 // org.apache.coyote.RequestGroupInfo this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lorg/apache/coyote/RequestGroupInfo;
            0    6     1  maxTime  J
            3    4     3       rp  Lorg/apache/coyote/RequestInfo;
    MethodParameters:
         Name  Flags
      maxTime  

  public synchronized long getProcessingTime();
    descriptor: ()J
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // org.apache.coyote.RequestGroupInfo this
         0: .line 74
            aload 0 /* this */
            getfield org.apache.coyote.RequestGroupInfo.deadProcessingTime:J
            lstore 1 /* time */
        start local 1 // long time
         1: .line 75
            aload 0 /* this */
            getfield org.apache.coyote.RequestGroupInfo.processors:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: org.apache.coyote.RequestGroupInfo long top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.coyote.RequestInfo
            astore 3 /* rp */
        start local 3 // org.apache.coyote.RequestInfo rp
         3: .line 76
            lload 1 /* time */
            aload 3 /* rp */
            invokevirtual org.apache.coyote.RequestInfo.getProcessingTime:()J
            ladd
            lstore 1 /* time */
        end local 3 // org.apache.coyote.RequestInfo rp
         4: .line 75
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 78
            lload 1 /* time */
            lreturn
        end local 1 // long time
        end local 0 // org.apache.coyote.RequestGroupInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/coyote/RequestGroupInfo;
            1    6     1  time  J
            3    4     3    rp  Lorg/apache/coyote/RequestInfo;

  public synchronized void setProcessingTime(long);
    descriptor: (J)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.apache.coyote.RequestGroupInfo this
        start local 1 // long totalTime
         0: .line 82
            aload 0 /* this */
            lload 1 /* totalTime */
            putfield org.apache.coyote.RequestGroupInfo.deadProcessingTime:J
         1: .line 83
            aload 0 /* this */
            getfield org.apache.coyote.RequestGroupInfo.processors:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: org.apache.coyote.RequestGroupInfo long top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.coyote.RequestInfo
            astore 3 /* rp */
        start local 3 // org.apache.coyote.RequestInfo rp
         3: .line 84
            aload 3 /* rp */
            lload 1 /* totalTime */
            invokevirtual org.apache.coyote.RequestInfo.setProcessingTime:(J)V
        end local 3 // org.apache.coyote.RequestInfo rp
         4: .line 83
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 86
            return
        end local 1 // long totalTime
        end local 0 // org.apache.coyote.RequestGroupInfo this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lorg/apache/coyote/RequestGroupInfo;
            0    6     1  totalTime  J
            3    4     3         rp  Lorg/apache/coyote/RequestInfo;
    MethodParameters:
           Name  Flags
      totalTime  

  public synchronized int getRequestCount();
    descriptor: ()I
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // org.apache.coyote.RequestGroupInfo this
         0: .line 89
            aload 0 /* this */
            getfield org.apache.coyote.RequestGroupInfo.deadRequestCount:I
            istore 1 /* requestCount */
        start local 1 // int requestCount
         1: .line 90
            aload 0 /* this */
            getfield org.apache.coyote.RequestGroupInfo.processors:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 4
      StackMap locals: org.apache.coyote.RequestGroupInfo int top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.coyote.RequestInfo
            astore 2 /* rp */
        start local 2 // org.apache.coyote.RequestInfo rp
         3: .line 91
            iload 1 /* requestCount */
            aload 2 /* rp */
            invokevirtual org.apache.coyote.RequestInfo.getRequestCount:()I
            iadd
            istore 1 /* requestCount */
        end local 2 // org.apache.coyote.RequestInfo rp
         4: .line 90
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 93
            iload 1 /* requestCount */
            ireturn
        end local 1 // int requestCount
        end local 0 // org.apache.coyote.RequestGroupInfo this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lorg/apache/coyote/RequestGroupInfo;
            1    6     1  requestCount  I
            3    4     2            rp  Lorg/apache/coyote/RequestInfo;

  public synchronized void setRequestCount(int);
    descriptor: (I)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.apache.coyote.RequestGroupInfo this
        start local 1 // int requestCount
         0: .line 97
            aload 0 /* this */
            iload 1 /* requestCount */
            putfield org.apache.coyote.RequestGroupInfo.deadRequestCount:I
         1: .line 98
            aload 0 /* this */
            getfield org.apache.coyote.RequestGroupInfo.processors:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 4
      StackMap locals: org.apache.coyote.RequestGroupInfo int top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.coyote.RequestInfo
            astore 2 /* rp */
        start local 2 // org.apache.coyote.RequestInfo rp
         3: .line 99
            aload 2 /* rp */
            iload 1 /* requestCount */
            invokevirtual org.apache.coyote.RequestInfo.setRequestCount:(I)V
        end local 2 // org.apache.coyote.RequestInfo rp
         4: .line 98
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 101
            return
        end local 1 // int requestCount
        end local 0 // org.apache.coyote.RequestGroupInfo this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lorg/apache/coyote/RequestGroupInfo;
            0    6     1  requestCount  I
            3    4     2            rp  Lorg/apache/coyote/RequestInfo;
    MethodParameters:
              Name  Flags
      requestCount  

  public synchronized int getErrorCount();
    descriptor: ()I
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // org.apache.coyote.RequestGroupInfo this
         0: .line 104
            aload 0 /* this */
            getfield org.apache.coyote.RequestGroupInfo.deadErrorCount:I
            istore 1 /* requestCount */
        start local 1 // int requestCount
         1: .line 105
            aload 0 /* this */
            getfield org.apache.coyote.RequestGroupInfo.processors:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 4
      StackMap locals: org.apache.coyote.RequestGroupInfo int top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.coyote.RequestInfo
            astore 2 /* rp */
        start local 2 // org.apache.coyote.RequestInfo rp
         3: .line 106
            iload 1 /* requestCount */
            aload 2 /* rp */
            invokevirtual org.apache.coyote.RequestInfo.getErrorCount:()I
            iadd
            istore 1 /* requestCount */
        end local 2 // org.apache.coyote.RequestInfo rp
         4: .line 105
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 108
            iload 1 /* requestCount */
            ireturn
        end local 1 // int requestCount
        end local 0 // org.apache.coyote.RequestGroupInfo this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lorg/apache/coyote/RequestGroupInfo;
            1    6     1  requestCount  I
            3    4     2            rp  Lorg/apache/coyote/RequestInfo;

  public synchronized void setErrorCount(int);
    descriptor: (I)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.apache.coyote.RequestGroupInfo this
        start local 1 // int errorCount
         0: .line 112
            aload 0 /* this */
            iload 1 /* errorCount */
            putfield org.apache.coyote.RequestGroupInfo.deadErrorCount:I
         1: .line 113
            aload 0 /* this */
            getfield org.apache.coyote.RequestGroupInfo.processors:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 4
      StackMap locals: org.apache.coyote.RequestGroupInfo int top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.coyote.RequestInfo
            astore 2 /* rp */
        start local 2 // org.apache.coyote.RequestInfo rp
         3: .line 114
            aload 2 /* rp */
            iload 1 /* errorCount */
            invokevirtual org.apache.coyote.RequestInfo.setErrorCount:(I)V
        end local 2 // org.apache.coyote.RequestInfo rp
         4: .line 113
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 116
            return
        end local 1 // int errorCount
        end local 0 // org.apache.coyote.RequestGroupInfo this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Lorg/apache/coyote/RequestGroupInfo;
            0    6     1  errorCount  I
            3    4     2          rp  Lorg/apache/coyote/RequestInfo;
    MethodParameters:
            Name  Flags
      errorCount  

  public synchronized long getBytesReceived();
    descriptor: ()J
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // org.apache.coyote.RequestGroupInfo this
         0: .line 119
            aload 0 /* this */
            getfield org.apache.coyote.RequestGroupInfo.deadBytesReceived:J
            lstore 1 /* bytes */
        start local 1 // long bytes
         1: .line 120
            aload 0 /* this */
            getfield org.apache.coyote.RequestGroupInfo.processors:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: org.apache.coyote.RequestGroupInfo long top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.coyote.RequestInfo
            astore 3 /* rp */
        start local 3 // org.apache.coyote.RequestInfo rp
         3: .line 121
            lload 1 /* bytes */
            aload 3 /* rp */
            invokevirtual org.apache.coyote.RequestInfo.getBytesReceived:()J
            ladd
            lstore 1 /* bytes */
        end local 3 // org.apache.coyote.RequestInfo rp
         4: .line 120
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 123
            lload 1 /* bytes */
            lreturn
        end local 1 // long bytes
        end local 0 // org.apache.coyote.RequestGroupInfo this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/apache/coyote/RequestGroupInfo;
            1    6     1  bytes  J
            3    4     3     rp  Lorg/apache/coyote/RequestInfo;

  public synchronized void setBytesReceived(long);
    descriptor: (J)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.apache.coyote.RequestGroupInfo this
        start local 1 // long bytesReceived
         0: .line 127
            aload 0 /* this */
            lload 1 /* bytesReceived */
            putfield org.apache.coyote.RequestGroupInfo.deadBytesReceived:J
         1: .line 128
            aload 0 /* this */
            getfield org.apache.coyote.RequestGroupInfo.processors:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: org.apache.coyote.RequestGroupInfo long top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.coyote.RequestInfo
            astore 3 /* rp */
        start local 3 // org.apache.coyote.RequestInfo rp
         3: .line 129
            aload 3 /* rp */
            lload 1 /* bytesReceived */
            invokevirtual org.apache.coyote.RequestInfo.setBytesReceived:(J)V
        end local 3 // org.apache.coyote.RequestInfo rp
         4: .line 128
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 131
            return
        end local 1 // long bytesReceived
        end local 0 // org.apache.coyote.RequestGroupInfo this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0           this  Lorg/apache/coyote/RequestGroupInfo;
            0    6     1  bytesReceived  J
            3    4     3             rp  Lorg/apache/coyote/RequestInfo;
    MethodParameters:
               Name  Flags
      bytesReceived  

  public synchronized long getBytesSent();
    descriptor: ()J
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // org.apache.coyote.RequestGroupInfo this
         0: .line 134
            aload 0 /* this */
            getfield org.apache.coyote.RequestGroupInfo.deadBytesSent:J
            lstore 1 /* bytes */
        start local 1 // long bytes
         1: .line 135
            aload 0 /* this */
            getfield org.apache.coyote.RequestGroupInfo.processors:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: org.apache.coyote.RequestGroupInfo long top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.coyote.RequestInfo
            astore 3 /* rp */
        start local 3 // org.apache.coyote.RequestInfo rp
         3: .line 136
            lload 1 /* bytes */
            aload 3 /* rp */
            invokevirtual org.apache.coyote.RequestInfo.getBytesSent:()J
            ladd
            lstore 1 /* bytes */
        end local 3 // org.apache.coyote.RequestInfo rp
         4: .line 135
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 138
            lload 1 /* bytes */
            lreturn
        end local 1 // long bytes
        end local 0 // org.apache.coyote.RequestGroupInfo this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/apache/coyote/RequestGroupInfo;
            1    6     1  bytes  J
            3    4     3     rp  Lorg/apache/coyote/RequestInfo;

  public synchronized void setBytesSent(long);
    descriptor: (J)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.apache.coyote.RequestGroupInfo this
        start local 1 // long bytesSent
         0: .line 142
            aload 0 /* this */
            lload 1 /* bytesSent */
            putfield org.apache.coyote.RequestGroupInfo.deadBytesSent:J
         1: .line 143
            aload 0 /* this */
            getfield org.apache.coyote.RequestGroupInfo.processors:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: org.apache.coyote.RequestGroupInfo long top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.coyote.RequestInfo
            astore 3 /* rp */
        start local 3 // org.apache.coyote.RequestInfo rp
         3: .line 144
            aload 3 /* rp */
            lload 1 /* bytesSent */
            invokevirtual org.apache.coyote.RequestInfo.setBytesSent:(J)V
        end local 3 // org.apache.coyote.RequestInfo rp
         4: .line 143
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 146
            return
        end local 1 // long bytesSent
        end local 0 // org.apache.coyote.RequestGroupInfo this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lorg/apache/coyote/RequestGroupInfo;
            0    6     1  bytesSent  J
            3    4     3         rp  Lorg/apache/coyote/RequestInfo;
    MethodParameters:
           Name  Flags
      bytesSent  

  public void resetCounters();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.coyote.RequestGroupInfo this
         0: .line 149
            aload 0 /* this */
            lconst_0
            invokevirtual org.apache.coyote.RequestGroupInfo.setBytesReceived:(J)V
         1: .line 150
            aload 0 /* this */
            lconst_0
            invokevirtual org.apache.coyote.RequestGroupInfo.setBytesSent:(J)V
         2: .line 151
            aload 0 /* this */
            iconst_0
            invokevirtual org.apache.coyote.RequestGroupInfo.setRequestCount:(I)V
         3: .line 152
            aload 0 /* this */
            lconst_0
            invokevirtual org.apache.coyote.RequestGroupInfo.setProcessingTime:(J)V
         4: .line 153
            aload 0 /* this */
            lconst_0
            invokevirtual org.apache.coyote.RequestGroupInfo.setMaxTime:(J)V
         5: .line 154
            aload 0 /* this */
            iconst_0
            invokevirtual org.apache.coyote.RequestGroupInfo.setErrorCount:(I)V
         6: .line 155
            return
        end local 0 // org.apache.coyote.RequestGroupInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/coyote/RequestGroupInfo;
}
SourceFile: "RequestGroupInfo.java"