final class io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer<T> extends java.util.concurrent.atomic.AtomicReference<java.lang.Object> implements io.reactivex.subjects.ReplaySubject$ReplayBuffer<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer
  super_class: java.util.concurrent.atomic.AtomicReference
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -733876083048047795

  final java.util.List<java.lang.Object> buffer;
    descriptor: Ljava/util/List;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/List<Ljava/lang/Object;>;

  volatile boolean done;
    descriptor: Z
    flags: (0x0040) ACC_VOLATILE

  volatile int size;
    descriptor: I
    flags: (0x0040) ACC_VOLATILE

  void <init>(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer this
        start local 1 // int capacityHint
         0: .line 638
            aload 0 /* this */
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:()V
         1: .line 639
            aload 0 /* this */
            new java.util.ArrayList
            dup
            iload 1 /* capacityHint */
            ldc "capacityHint"
            invokestatic io.reactivex.internal.functions.ObjectHelper.verifyPositive:(ILjava/lang/String;)I
            invokespecial java.util.ArrayList.<init>:(I)V
            putfield io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer.buffer:Ljava/util/List;
         2: .line 640
            return
        end local 1 // int capacityHint
        end local 0 // io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lio/reactivex/subjects/ReplaySubject$UnboundedReplayBuffer<TT;>;
            0    3     1  capacityHint  I
    MethodParameters:
              Name  Flags
      capacityHint  

  public void add();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer this
        start local 1 // java.lang.Object value
         0: .line 644
            aload 0 /* this */
            getfield io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer.buffer:Ljava/util/List;
            aload 1 /* value */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 645
            aload 0 /* this */
            dup
            getfield io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer.size:I
            iconst_1
            iadd
            putfield io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer.size:I
         2: .line 646
            return
        end local 1 // java.lang.Object value
        end local 0 // io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/reactivex/subjects/ReplaySubject$UnboundedReplayBuffer<TT;>;
            0    3     1  value  TT;
    Signature: (TT;)V
    MethodParameters:
       Name  Flags
      value  

  public void addFinal(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer this
        start local 1 // java.lang.Object notificationLite
         0: .line 650
            aload 0 /* this */
            getfield io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer.buffer:Ljava/util/List;
            aload 1 /* notificationLite */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 651
            aload 0 /* this */
            invokevirtual io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer.trimHead:()V
         2: .line 652
            aload 0 /* this */
            dup
            getfield io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer.size:I
            iconst_1
            iadd
            putfield io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer.size:I
         3: .line 653
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer.done:Z
         4: .line 654
            return
        end local 1 // java.lang.Object notificationLite
        end local 0 // io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    5     0              this  Lio/reactivex/subjects/ReplaySubject$UnboundedReplayBuffer<TT;>;
            0    5     1  notificationLite  Ljava/lang/Object;
    MethodParameters:
                  Name  Flags
      notificationLite  

  public void trimHead();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer this
         0: .line 659
            return
        end local 0 // io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/reactivex/subjects/ReplaySubject$UnboundedReplayBuffer<TT;>;

  public T getValue();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer this
         0: .line 665
            aload 0 /* this */
            getfield io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer.size:I
            istore 1 /* s */
        start local 1 // int s
         1: .line 666
            iload 1 /* s */
            ifeq 9
         2: .line 667
            aload 0 /* this */
            getfield io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer.buffer:Ljava/util/List;
            astore 2 /* b */
        start local 2 // java.util.List b
         3: .line 668
            aload 2 /* b */
            iload 1 /* s */
            iconst_1
            isub
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            astore 3 /* o */
        start local 3 // java.lang.Object o
         4: .line 669
            aload 3 /* o */
            invokestatic io.reactivex.internal.util.NotificationLite.isComplete:(Ljava/lang/Object;)Z
            ifne 5
            aload 3 /* o */
            invokestatic io.reactivex.internal.util.NotificationLite.isError:(Ljava/lang/Object;)Z
            ifeq 8
         5: .line 670
      StackMap locals: int java.util.List java.lang.Object
      StackMap stack:
            iload 1 /* s */
            iconst_1
            if_icmpne 7
         6: .line 671
            aconst_null
            areturn
         7: .line 673
      StackMap locals:
      StackMap stack:
            aload 2 /* b */
            iload 1 /* s */
            iconst_2
            isub
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            areturn
         8: .line 675
      StackMap locals:
      StackMap stack:
            aload 3 /* o */
            areturn
        end local 3 // java.lang.Object o
        end local 2 // java.util.List b
         9: .line 677
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 1 // int s
        end local 0 // io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lio/reactivex/subjects/ReplaySubject$UnboundedReplayBuffer<TT;>;
            1   10     1     s  I
            3    9     2     b  Ljava/util/List<Ljava/lang/Object;>;
            4    9     3     o  Ljava/lang/Object;
    Signature: ()TT;
    RuntimeInvisibleAnnotations: 
      io.reactivex.annotations.Nullable()

  public T[] getValues();
    descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer this
        start local 1 // java.lang.Object[] array
         0: .line 683
            aload 0 /* this */
            getfield io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer.size:I
            istore 2 /* s */
        start local 2 // int s
         1: .line 684
            iload 2 /* s */
            ifne 5
         2: .line 685
            aload 1 /* array */
            arraylength
            ifeq 4
         3: .line 686
            aload 1 /* array */
            iconst_0
            aconst_null
            aastore
         4: .line 688
      StackMap locals: int
      StackMap stack:
            aload 1 /* array */
            areturn
         5: .line 690
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer.buffer:Ljava/util/List;
            astore 3 /* b */
        start local 3 // java.util.List b
         6: .line 691
            aload 3 /* b */
            iload 2 /* s */
            iconst_1
            isub
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            astore 4 /* o */
        start local 4 // java.lang.Object o
         7: .line 693
            aload 4 /* o */
            invokestatic io.reactivex.internal.util.NotificationLite.isComplete:(Ljava/lang/Object;)Z
            ifne 8
            aload 4 /* o */
            invokestatic io.reactivex.internal.util.NotificationLite.isError:(Ljava/lang/Object;)Z
            ifeq 13
         8: .line 694
      StackMap locals: java.util.List java.lang.Object
      StackMap stack:
            iinc 2 /* s */ -1
         9: .line 695
            iload 2 /* s */
            ifne 13
        10: .line 696
            aload 1 /* array */
            arraylength
            ifeq 12
        11: .line 697
            aload 1 /* array */
            iconst_0
            aconst_null
            aastore
        12: .line 699
      StackMap locals:
      StackMap stack:
            aload 1 /* array */
            areturn
        13: .line 703
      StackMap locals:
      StackMap stack:
            aload 1 /* array */
            arraylength
            iload 2 /* s */
            if_icmpge 15
        14: .line 704
            aload 1 /* array */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getComponentType:()Ljava/lang/Class;
            iload 2 /* s */
            invokestatic java.lang.reflect.Array.newInstance:(Ljava/lang/Class;I)Ljava/lang/Object;
            checkcast java.lang.Object[]
            astore 1 /* array */
        15: .line 706
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        16: goto 19
        17: .line 707
      StackMap locals: int
      StackMap stack:
            aload 1 /* array */
            iload 5 /* i */
            aload 3 /* b */
            iload 5 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            aastore
        18: .line 706
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        19: iload 5 /* i */
            iload 2 /* s */
            if_icmplt 17
        end local 5 // int i
        20: .line 709
            aload 1 /* array */
            arraylength
            iload 2 /* s */
            if_icmple 22
        21: .line 710
            aload 1 /* array */
            iload 2 /* s */
            aconst_null
            aastore
        22: .line 713
      StackMap locals:
      StackMap stack:
            aload 1 /* array */
            areturn
        end local 4 // java.lang.Object o
        end local 3 // java.util.List b
        end local 2 // int s
        end local 1 // java.lang.Object[] array
        end local 0 // io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   23     0   this  Lio/reactivex/subjects/ReplaySubject$UnboundedReplayBuffer<TT;>;
            0   23     1  array  [Ljava/lang/Object;
            1   23     2      s  I
            6   23     3      b  Ljava/util/List<Ljava/lang/Object;>;
            7   23     4      o  Ljava/lang/Object;
           16   20     5      i  I
    Signature: ([TT;)[TT;
    MethodParameters:
       Name  Flags
      array  

  public void replay(io.reactivex.subjects.ReplaySubject$ReplayDisposable<T>);
    descriptor: (Lio/reactivex/subjects/ReplaySubject$ReplayDisposable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=9, args_size=2
        start local 0 // io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer this
        start local 1 // io.reactivex.subjects.ReplaySubject$ReplayDisposable rs
         0: .line 719
            aload 1 /* rs */
            invokevirtual io.reactivex.subjects.ReplaySubject$ReplayDisposable.getAndIncrement:()I
            ifeq 2
         1: .line 720
            return
         2: .line 723
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 2 /* missed */
        start local 2 // int missed
         3: .line 724
            aload 0 /* this */
            getfield io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer.buffer:Ljava/util/List;
            astore 3 /* b */
        start local 3 // java.util.List b
         4: .line 725
            aload 1 /* rs */
            getfield io.reactivex.subjects.ReplaySubject$ReplayDisposable.downstream:Lio/reactivex/Observer;
            astore 4 /* a */
        start local 4 // io.reactivex.Observer a
         5: .line 727
            aload 1 /* rs */
            getfield io.reactivex.subjects.ReplaySubject$ReplayDisposable.index:Ljava/lang/Object;
            checkcast java.lang.Integer
            astore 5 /* indexObject */
        start local 5 // java.lang.Integer indexObject
         6: .line 729
            aload 5 /* indexObject */
            ifnull 9
         7: .line 730
            aload 5 /* indexObject */
            invokevirtual java.lang.Integer.intValue:()I
            istore 6 /* index */
        start local 6 // int index
         8: .line 731
            goto 11
        end local 6 // int index
         9: .line 732
      StackMap locals: io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer io.reactivex.subjects.ReplaySubject$ReplayDisposable int java.util.List io.reactivex.Observer java.lang.Integer
      StackMap stack:
            iconst_0
            istore 6 /* index */
        start local 6 // int index
        10: .line 733
            aload 1 /* rs */
            iconst_0
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            putfield io.reactivex.subjects.ReplaySubject$ReplayDisposable.index:Ljava/lang/Object;
        11: .line 738
      StackMap locals: int
      StackMap stack:
            aload 1 /* rs */
            getfield io.reactivex.subjects.ReplaySubject$ReplayDisposable.cancelled:Z
            ifeq 14
        12: .line 739
            aload 1 /* rs */
            aconst_null
            putfield io.reactivex.subjects.ReplaySubject$ReplayDisposable.index:Ljava/lang/Object;
        13: .line 740
            return
        14: .line 743
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer.size:I
            istore 7 /* s */
        start local 7 // int s
        15: .line 745
            goto 33
        16: .line 747
      StackMap locals: int
      StackMap stack:
            aload 1 /* rs */
            getfield io.reactivex.subjects.ReplaySubject$ReplayDisposable.cancelled:Z
            ifeq 19
        17: .line 748
            aload 1 /* rs */
            aconst_null
            putfield io.reactivex.subjects.ReplaySubject$ReplayDisposable.index:Ljava/lang/Object;
        18: .line 749
            return
        19: .line 752
      StackMap locals:
      StackMap stack:
            aload 3 /* b */
            iload 6 /* index */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            astore 8 /* o */
        start local 8 // java.lang.Object o
        20: .line 754
            aload 0 /* this */
            getfield io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer.done:Z
            ifeq 31
        21: .line 755
            iload 6 /* index */
            iconst_1
            iadd
            iload 7 /* s */
            if_icmpne 31
        22: .line 756
            aload 0 /* this */
            getfield io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer.size:I
            istore 7 /* s */
        23: .line 757
            iload 6 /* index */
            iconst_1
            iadd
            iload 7 /* s */
            if_icmpne 31
        24: .line 758
            aload 8 /* o */
            invokestatic io.reactivex.internal.util.NotificationLite.isComplete:(Ljava/lang/Object;)Z
            ifeq 27
        25: .line 759
            aload 4 /* a */
            invokeinterface io.reactivex.Observer.onComplete:()V
        26: .line 760
            goto 28
        27: .line 761
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 4 /* a */
            aload 8 /* o */
            invokestatic io.reactivex.internal.util.NotificationLite.getError:(Ljava/lang/Object;)Ljava/lang/Throwable;
            invokeinterface io.reactivex.Observer.onError:(Ljava/lang/Throwable;)V
        28: .line 763
      StackMap locals:
      StackMap stack:
            aload 1 /* rs */
            aconst_null
            putfield io.reactivex.subjects.ReplaySubject$ReplayDisposable.index:Ljava/lang/Object;
        29: .line 764
            aload 1 /* rs */
            iconst_1
            putfield io.reactivex.subjects.ReplaySubject$ReplayDisposable.cancelled:Z
        30: .line 765
            return
        31: .line 770
      StackMap locals:
      StackMap stack:
            aload 4 /* a */
            aload 8 /* o */
            invokeinterface io.reactivex.Observer.onNext:(Ljava/lang/Object;)V
        32: .line 771
            iinc 6 /* index */ 1
        end local 8 // java.lang.Object o
        33: .line 745
      StackMap locals:
      StackMap stack:
            iload 7 /* s */
            iload 6 /* index */
            if_icmpne 16
        34: .line 774
            iload 6 /* index */
            aload 0 /* this */
            getfield io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer.size:I
            if_icmpeq 36
        35: .line 775
            goto 11
        36: .line 778
      StackMap locals:
      StackMap stack:
            aload 1 /* rs */
            iload 6 /* index */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            putfield io.reactivex.subjects.ReplaySubject$ReplayDisposable.index:Ljava/lang/Object;
        37: .line 780
            aload 1 /* rs */
            iload 2 /* missed */
            ineg
            invokevirtual io.reactivex.subjects.ReplaySubject$ReplayDisposable.addAndGet:(I)I
            istore 2 /* missed */
        38: .line 781
            iload 2 /* missed */
            ifne 11
        end local 7 // int s
        39: .line 785
            return
        end local 6 // int index
        end local 5 // java.lang.Integer indexObject
        end local 4 // io.reactivex.Observer a
        end local 3 // java.util.List b
        end local 2 // int missed
        end local 1 // io.reactivex.subjects.ReplaySubject$ReplayDisposable rs
        end local 0 // io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   40     0         this  Lio/reactivex/subjects/ReplaySubject$UnboundedReplayBuffer<TT;>;
            0   40     1           rs  Lio/reactivex/subjects/ReplaySubject$ReplayDisposable<TT;>;
            3   40     2       missed  I
            4   40     3            b  Ljava/util/List<Ljava/lang/Object;>;
            5   40     4            a  Lio/reactivex/Observer<-TT;>;
            6   40     5  indexObject  Ljava/lang/Integer;
            8    9     6        index  I
           10   40     6        index  I
           15   39     7            s  I
           20   33     8            o  Ljava/lang/Object;
    Signature: (Lio/reactivex/subjects/ReplaySubject$ReplayDisposable<TT;>;)V
    MethodParameters:
      Name  Flags
      rs    

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer this
         0: .line 789
            aload 0 /* this */
            getfield io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer.size:I
            istore 1 /* s */
        start local 1 // int s
         1: .line 790
            iload 1 /* s */
            ifeq 6
         2: .line 791
            aload 0 /* this */
            getfield io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer.buffer:Ljava/util/List;
            iload 1 /* s */
            iconst_1
            isub
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            astore 2 /* o */
        start local 2 // java.lang.Object o
         3: .line 792
            aload 2 /* o */
            invokestatic io.reactivex.internal.util.NotificationLite.isComplete:(Ljava/lang/Object;)Z
            ifne 4
            aload 2 /* o */
            invokestatic io.reactivex.internal.util.NotificationLite.isError:(Ljava/lang/Object;)Z
            ifeq 5
         4: .line 793
      StackMap locals: int java.lang.Object
      StackMap stack:
            iload 1 /* s */
            iconst_1
            isub
            ireturn
         5: .line 795
      StackMap locals:
      StackMap stack:
            iload 1 /* s */
            ireturn
        end local 2 // java.lang.Object o
         6: .line 797
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // int s
        end local 0 // io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/reactivex/subjects/ReplaySubject$UnboundedReplayBuffer<TT;>;
            1    7     1     s  I
            3    6     2     o  Ljava/lang/Object;
}
Signature: <T:Ljava/lang/Object;>Ljava/util/concurrent/atomic/AtomicReference<Ljava/lang/Object;>;Lio/reactivex/subjects/ReplaySubject$ReplayBuffer<TT;>;
SourceFile: "ReplaySubject.java"
NestHost: io.reactivex.subjects.ReplaySubject
InnerClasses:
  abstract ReplayBuffer = io.reactivex.subjects.ReplaySubject$ReplayBuffer of io.reactivex.subjects.ReplaySubject
  final ReplayDisposable = io.reactivex.subjects.ReplaySubject$ReplayDisposable of io.reactivex.subjects.ReplaySubject
  final UnboundedReplayBuffer = io.reactivex.subjects.ReplaySubject$UnboundedReplayBuffer of io.reactivex.subjects.ReplaySubject