final class io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber<T> extends java.util.concurrent.atomic.AtomicInteger implements io.reactivex.FlowableSubscriber<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber
  super_class: java.util.concurrent.atomic.AtomicInteger
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -7098360935104053232

  final org.reactivestreams.Subscriber<? super T> downstream;
    descriptor: Lorg/reactivestreams/Subscriber;
    flags: (0x0010) ACC_FINAL
    Signature: Lorg/reactivestreams/Subscriber<-TT;>;

  final io.reactivex.internal.subscriptions.SubscriptionArbiter sa;
    descriptor: Lio/reactivex/internal/subscriptions/SubscriptionArbiter;
    flags: (0x0010) ACC_FINAL

  final org.reactivestreams.Publisher<? extends T> source;
    descriptor: Lorg/reactivestreams/Publisher;
    flags: (0x0010) ACC_FINAL
    Signature: Lorg/reactivestreams/Publisher<+TT;>;

  final io.reactivex.functions.Predicate<? super java.lang.Throwable> predicate;
    descriptor: Lio/reactivex/functions/Predicate;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/functions/Predicate<-Ljava/lang/Throwable;>;

  long remaining;
    descriptor: J
    flags: (0x0000) 

  long produced;
    descriptor: J
    flags: (0x0000) 

  void <init>(org.reactivestreams.Subscriber<? super T>, long, io.reactivex.functions.Predicate<? super java.lang.Throwable>, io.reactivex.internal.subscriptions.SubscriptionArbiter, org.reactivestreams.Publisher<? extends T>);
    descriptor: (Lorg/reactivestreams/Subscriber;JLio/reactivex/functions/Predicate;Lio/reactivex/internal/subscriptions/SubscriptionArbiter;Lorg/reactivestreams/Publisher;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=7, args_size=6
        start local 0 // io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber this
        start local 1 // org.reactivestreams.Subscriber actual
        start local 2 // long count
        start local 4 // io.reactivex.functions.Predicate predicate
        start local 5 // io.reactivex.internal.subscriptions.SubscriptionArbiter sa
        start local 6 // org.reactivestreams.Publisher source
         0: .line 57
            aload 0 /* this */
            invokespecial java.util.concurrent.atomic.AtomicInteger.<init>:()V
         1: .line 59
            aload 0 /* this */
            aload 1 /* actual */
            putfield io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber.downstream:Lorg/reactivestreams/Subscriber;
         2: .line 60
            aload 0 /* this */
            aload 5 /* sa */
            putfield io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber.sa:Lio/reactivex/internal/subscriptions/SubscriptionArbiter;
         3: .line 61
            aload 0 /* this */
            aload 6 /* source */
            putfield io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber.source:Lorg/reactivestreams/Publisher;
         4: .line 62
            aload 0 /* this */
            aload 4 /* predicate */
            putfield io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber.predicate:Lio/reactivex/functions/Predicate;
         5: .line 63
            aload 0 /* this */
            lload 2 /* count */
            putfield io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber.remaining:J
         6: .line 64
            return
        end local 6 // org.reactivestreams.Publisher source
        end local 5 // io.reactivex.internal.subscriptions.SubscriptionArbiter sa
        end local 4 // io.reactivex.functions.Predicate predicate
        end local 2 // long count
        end local 1 // org.reactivestreams.Subscriber actual
        end local 0 // io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lio/reactivex/internal/operators/flowable/FlowableRetryPredicate$RetrySubscriber<TT;>;
            0    7     1     actual  Lorg/reactivestreams/Subscriber<-TT;>;
            0    7     2      count  J
            0    7     4  predicate  Lio/reactivex/functions/Predicate<-Ljava/lang/Throwable;>;
            0    7     5         sa  Lio/reactivex/internal/subscriptions/SubscriptionArbiter;
            0    7     6     source  Lorg/reactivestreams/Publisher<+TT;>;
    Signature: (Lorg/reactivestreams/Subscriber<-TT;>;JLio/reactivex/functions/Predicate<-Ljava/lang/Throwable;>;Lio/reactivex/internal/subscriptions/SubscriptionArbiter;Lorg/reactivestreams/Publisher<+TT;>;)V
    MethodParameters:
           Name  Flags
      actual     
      count      
      predicate  
      sa         
      source     

  public void onSubscribe(org.reactivestreams.Subscription);
    descriptor: (Lorg/reactivestreams/Subscription;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber this
        start local 1 // org.reactivestreams.Subscription s
         0: .line 68
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber.sa:Lio/reactivex/internal/subscriptions/SubscriptionArbiter;
            aload 1 /* s */
            invokevirtual io.reactivex.internal.subscriptions.SubscriptionArbiter.setSubscription:(Lorg/reactivestreams/Subscription;)V
         1: .line 69
            return
        end local 1 // org.reactivestreams.Subscription s
        end local 0 // io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/operators/flowable/FlowableRetryPredicate$RetrySubscriber<TT;>;
            0    2     1     s  Lorg/reactivestreams/Subscription;
    MethodParameters:
      Name  Flags
      s     

  public void onNext();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber this
        start local 1 // java.lang.Object t
         0: .line 73
            aload 0 /* this */
            dup
            getfield io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber.produced:J
            lconst_1
            ladd
            putfield io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber.produced:J
         1: .line 74
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber.downstream:Lorg/reactivestreams/Subscriber;
            aload 1 /* t */
            invokeinterface org.reactivestreams.Subscriber.onNext:(Ljava/lang/Object;)V
         2: .line 75
            return
        end local 1 // java.lang.Object t
        end local 0 // io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/reactivex/internal/operators/flowable/FlowableRetryPredicate$RetrySubscriber<TT;>;
            0    3     1     t  TT;
    Signature: (TT;)V
    MethodParameters:
      Name  Flags
      t     

  public void onError(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=6, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber this
        start local 1 // java.lang.Throwable t
         0: .line 79
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber.remaining:J
            lstore 2 /* r */
        start local 2 // long r
         1: .line 80
            lload 2 /* r */
            ldc 9223372036854775807
            lcmp
            ifeq 3
         2: .line 81
            aload 0 /* this */
            lload 2 /* r */
            lconst_1
            lsub
            putfield io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber.remaining:J
         3: .line 83
      StackMap locals: long
      StackMap stack:
            lload 2 /* r */
            lconst_0
            lcmp
            ifne 6
         4: .line 84
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber.downstream:Lorg/reactivestreams/Subscriber;
            aload 1 /* t */
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
         5: .line 85
            goto 16
         6: .line 88
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber.predicate:Lio/reactivex/functions/Predicate;
            aload 1 /* t */
            invokeinterface io.reactivex.functions.Predicate.test:(Ljava/lang/Object;)Z
            istore 4 /* b */
        start local 4 // boolean b
         7: .line 89
            goto 12
        end local 4 // boolean b
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: astore 5 /* e */
        start local 5 // java.lang.Throwable e
         9: .line 90
            aload 5 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        10: .line 91
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber.downstream:Lorg/reactivestreams/Subscriber;
            new io.reactivex.exceptions.CompositeException
            dup
            iconst_2
            anewarray java.lang.Throwable
            dup
            iconst_0
            aload 1 /* t */
            aastore
            dup
            iconst_1
            aload 5 /* e */
            aastore
            invokespecial io.reactivex.exceptions.CompositeException.<init>:([Ljava/lang/Throwable;)V
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
        11: .line 92
            return
        end local 5 // java.lang.Throwable e
        start local 4 // boolean b
        12: .line 94
      StackMap locals: int
      StackMap stack:
            iload 4 /* b */
            ifne 15
        13: .line 95
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber.downstream:Lorg/reactivestreams/Subscriber;
            aload 1 /* t */
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
        14: .line 96
            return
        15: .line 98
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber.subscribeNext:()V
        end local 4 // boolean b
        16: .line 100
      StackMap locals:
      StackMap stack:
            return
        end local 2 // long r
        end local 1 // java.lang.Throwable t
        end local 0 // io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Lio/reactivex/internal/operators/flowable/FlowableRetryPredicate$RetrySubscriber<TT;>;
            0   17     1     t  Ljava/lang/Throwable;
            1   17     2     r  J
            7    8     4     b  Z
           12   16     4     b  Z
            9   12     5     e  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           6     7       8  Class java.lang.Throwable
    MethodParameters:
      Name  Flags
      t     

  public void onComplete();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber this
         0: .line 104
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber.downstream:Lorg/reactivestreams/Subscriber;
            invokeinterface org.reactivestreams.Subscriber.onComplete:()V
         1: .line 105
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/operators/flowable/FlowableRetryPredicate$RetrySubscriber<TT;>;

  void subscribeNext();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber this
         0: .line 111
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber.getAndIncrement:()I
            ifne 11
         1: .line 112
            iconst_1
            istore 1 /* missed */
        start local 1 // int missed
         2: .line 114
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber.sa:Lio/reactivex/internal/subscriptions/SubscriptionArbiter;
            invokevirtual io.reactivex.internal.subscriptions.SubscriptionArbiter.isCancelled:()Z
            ifeq 4
         3: .line 115
            return
         4: .line 118
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber.produced:J
            lstore 2 /* p */
        start local 2 // long p
         5: .line 119
            lload 2 /* p */
            lconst_0
            lcmp
            ifeq 8
         6: .line 120
            aload 0 /* this */
            lconst_0
            putfield io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber.produced:J
         7: .line 121
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber.sa:Lio/reactivex/internal/subscriptions/SubscriptionArbiter;
            lload 2 /* p */
            invokevirtual io.reactivex.internal.subscriptions.SubscriptionArbiter.produced:(J)V
         8: .line 124
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber.source:Lorg/reactivestreams/Publisher;
            aload 0 /* this */
            invokeinterface org.reactivestreams.Publisher.subscribe:(Lorg/reactivestreams/Subscriber;)V
         9: .line 126
            aload 0 /* this */
            iload 1 /* missed */
            ineg
            invokevirtual io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber.addAndGet:(I)I
            istore 1 /* missed */
        10: .line 127
            iload 1 /* missed */
            ifne 2
        end local 2 // long p
        end local 1 // int missed
        11: .line 132
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lio/reactivex/internal/operators/flowable/FlowableRetryPredicate$RetrySubscriber<TT;>;
            2   11     1  missed  I
            5   11     2       p  J
}
Signature: <T:Ljava/lang/Object;>Ljava/util/concurrent/atomic/AtomicInteger;Lio/reactivex/FlowableSubscriber<TT;>;
SourceFile: "FlowableRetryPredicate.java"
NestHost: io.reactivex.internal.operators.flowable.FlowableRetryPredicate
InnerClasses:
  final RetrySubscriber = io.reactivex.internal.operators.flowable.FlowableRetryPredicate$RetrySubscriber of io.reactivex.internal.operators.flowable.FlowableRetryPredicate