public final class com.google.common.io.CountingOutputStream extends java.io.FilterOutputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.google.common.io.CountingOutputStream
  super_class: java.io.FilterOutputStream
{
  private long count;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  public void <init>(java.io.OutputStream);
    descriptor: (Ljava/io/OutputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.io.CountingOutputStream this
        start local 1 // java.io.OutputStream out
         0: .line 43
            aload 0 /* this */
            aload 1 /* out */
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.io.OutputStream
            invokespecial java.io.FilterOutputStream.<init>:(Ljava/io/OutputStream;)V
         1: .line 44
            return
        end local 1 // java.io.OutputStream out
        end local 0 // com.google.common.io.CountingOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/common/io/CountingOutputStream;
            0    2     1   out  Ljava/io/OutputStream;
    MethodParameters:
      Name  Flags
      out   

  public long getCount();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.google.common.io.CountingOutputStream this
         0: .line 48
            aload 0 /* this */
            getfield com.google.common.io.CountingOutputStream.count:J
            lreturn
        end local 0 // com.google.common.io.CountingOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/io/CountingOutputStream;

  public void write(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // com.google.common.io.CountingOutputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 53
            aload 0 /* this */
            getfield com.google.common.io.CountingOutputStream.out:Ljava/io/OutputStream;
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.io.OutputStream.write:([BII)V
         1: .line 54
            aload 0 /* this */
            dup
            getfield com.google.common.io.CountingOutputStream.count:J
            iload 3 /* len */
            i2l
            ladd
            putfield com.google.common.io.CountingOutputStream.count:J
         2: .line 55
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // com.google.common.io.CountingOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/google/common/io/CountingOutputStream;
            0    3     1     b  [B
            0    3     2   off  I
            0    3     3   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public void write(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.google.common.io.CountingOutputStream this
        start local 1 // int b
         0: .line 59
            aload 0 /* this */
            getfield com.google.common.io.CountingOutputStream.out:Ljava/io/OutputStream;
            iload 1 /* b */
            invokevirtual java.io.OutputStream.write:(I)V
         1: .line 60
            aload 0 /* this */
            dup
            getfield com.google.common.io.CountingOutputStream.count:J
            lconst_1
            ladd
            putfield com.google.common.io.CountingOutputStream.count:J
         2: .line 61
            return
        end local 1 // int b
        end local 0 // com.google.common.io.CountingOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/google/common/io/CountingOutputStream;
            0    3     1     b  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.io.CountingOutputStream this
         0: .line 68
            aload 0 /* this */
            getfield com.google.common.io.CountingOutputStream.out:Ljava/io/OutputStream;
            invokevirtual java.io.OutputStream.close:()V
         1: .line 69
            return
        end local 0 // com.google.common.io.CountingOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/common/io/CountingOutputStream;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "CountingOutputStream.java"
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.Beta()
      com.google.common.annotations.GwtIncompatible()