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

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

  final io.reactivex.internal.operators.flowable.FlowableCache<T> parent;
    descriptor: Lio/reactivex/internal/operators/flowable/FlowableCache;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/internal/operators/flowable/FlowableCache<TT;>;

  final java.util.concurrent.atomic.AtomicLong requested;
    descriptor: Ljava/util/concurrent/atomic/AtomicLong;
    flags: (0x0010) ACC_FINAL

  io.reactivex.internal.operators.flowable.FlowableCache$Node<T> node;
    descriptor: Lio/reactivex/internal/operators/flowable/FlowableCache$Node;
    flags: (0x0000) 
    Signature: Lio/reactivex/internal/operators/flowable/FlowableCache$Node<TT;>;

  int offset;
    descriptor: I
    flags: (0x0000) 

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

  void <init>(org.reactivestreams.Subscriber<? super T>, io.reactivex.internal.operators.flowable.FlowableCache<T>);
    descriptor: (Lorg/reactivestreams/Subscriber;Lio/reactivex/internal/operators/flowable/FlowableCache;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription this
        start local 1 // org.reactivestreams.Subscriber downstream
        start local 2 // io.reactivex.internal.operators.flowable.FlowableCache parent
         0: .line 372
            aload 0 /* this */
            invokespecial java.util.concurrent.atomic.AtomicInteger.<init>:()V
         1: .line 373
            aload 0 /* this */
            aload 1 /* downstream */
            putfield io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription.downstream:Lorg/reactivestreams/Subscriber;
         2: .line 374
            aload 0 /* this */
            aload 2 /* parent */
            putfield io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription.parent:Lio/reactivex/internal/operators/flowable/FlowableCache;
         3: .line 375
            aload 0 /* this */
            aload 2 /* parent */
            getfield io.reactivex.internal.operators.flowable.FlowableCache.head:Lio/reactivex/internal/operators/flowable/FlowableCache$Node;
            putfield io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription.node:Lio/reactivex/internal/operators/flowable/FlowableCache$Node;
         4: .line 376
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicLong
            dup
            invokespecial java.util.concurrent.atomic.AtomicLong.<init>:()V
            putfield io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription.requested:Ljava/util/concurrent/atomic/AtomicLong;
         5: .line 377
            return
        end local 2 // io.reactivex.internal.operators.flowable.FlowableCache parent
        end local 1 // org.reactivestreams.Subscriber downstream
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription<TT;>;
            0    6     1  downstream  Lorg/reactivestreams/Subscriber<-TT;>;
            0    6     2      parent  Lio/reactivex/internal/operators/flowable/FlowableCache<TT;>;
    Signature: (Lorg/reactivestreams/Subscriber<-TT;>;Lio/reactivex/internal/operators/flowable/FlowableCache<TT;>;)V
    MethodParameters:
            Name  Flags
      downstream  
      parent      

  public void request(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription this
        start local 1 // long n
         0: .line 381
            lload 1 /* n */
            invokestatic io.reactivex.internal.subscriptions.SubscriptionHelper.validate:(J)Z
            ifeq 3
         1: .line 382
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription.requested:Ljava/util/concurrent/atomic/AtomicLong;
            lload 1 /* n */
            invokestatic io.reactivex.internal.util.BackpressureHelper.addCancel:(Ljava/util/concurrent/atomic/AtomicLong;J)J
            pop2
         2: .line 383
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription.parent:Lio/reactivex/internal/operators/flowable/FlowableCache;
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCache.replay:(Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription;)V
         3: .line 385
      StackMap locals:
      StackMap stack:
            return
        end local 1 // long n
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription<TT;>;
            0    4     1     n  J
    MethodParameters:
      Name  Flags
      n     

  public void cancel();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription this
         0: .line 389
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription.requested:Ljava/util/concurrent/atomic/AtomicLong;
            ldc -9223372036854775808
            invokevirtual java.util.concurrent.atomic.AtomicLong.getAndSet:(J)J
            ldc -9223372036854775808
            lcmp
            ifeq 2
         1: .line 390
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription.parent:Lio/reactivex/internal/operators/flowable/FlowableCache;
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCache.remove:(Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription;)V
         2: .line 392
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/reactivex/internal/operators/flowable/FlowableCache$CacheSubscription<TT;>;
}
Signature: <T:Ljava/lang/Object;>Ljava/util/concurrent/atomic/AtomicInteger;Lorg/reactivestreams/Subscription;
SourceFile: "FlowableCache.java"
NestHost: io.reactivex.internal.operators.flowable.FlowableCache
InnerClasses:
  final CacheSubscription = io.reactivex.internal.operators.flowable.FlowableCache$CacheSubscription of io.reactivex.internal.operators.flowable.FlowableCache
  final Node = io.reactivex.internal.operators.flowable.FlowableCache$Node of io.reactivex.internal.operators.flowable.FlowableCache