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

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

  final long timeout;
    descriptor: J
    flags: (0x0010) ACC_FINAL

  final java.util.concurrent.TimeUnit unit;
    descriptor: Ljava/util/concurrent/TimeUnit;
    flags: (0x0010) ACC_FINAL

  final io.reactivex.Scheduler$Worker worker;
    descriptor: Lio/reactivex/Scheduler$Worker;
    flags: (0x0010) ACC_FINAL

  org.reactivestreams.Subscription upstream;
    descriptor: Lorg/reactivestreams/Subscription;
    flags: (0x0000) 

  final io.reactivex.internal.disposables.SequentialDisposable timer;
    descriptor: Lio/reactivex/internal/disposables/SequentialDisposable;
    flags: (0x0010) ACC_FINAL

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

  boolean done;
    descriptor: Z
    flags: (0x0000) 

  void <init>(org.reactivestreams.Subscriber<? super T>, long, java.util.concurrent.TimeUnit, io.reactivex.Scheduler$Worker);
    descriptor: (Lorg/reactivestreams/Subscriber;JLjava/util/concurrent/TimeUnit;Lio/reactivex/Scheduler$Worker;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=6, args_size=5
        start local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber this
        start local 1 // org.reactivestreams.Subscriber actual
        start local 2 // long timeout
        start local 4 // java.util.concurrent.TimeUnit unit
        start local 5 // io.reactivex.Scheduler$Worker worker
         0: .line 68
            aload 0 /* this */
            invokespecial java.util.concurrent.atomic.AtomicLong.<init>:()V
         1: .line 62
            aload 0 /* this */
            new io.reactivex.internal.disposables.SequentialDisposable
            dup
            invokespecial io.reactivex.internal.disposables.SequentialDisposable.<init>:()V
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.timer:Lio/reactivex/internal/disposables/SequentialDisposable;
         2: .line 69
            aload 0 /* this */
            aload 1 /* actual */
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.downstream:Lorg/reactivestreams/Subscriber;
         3: .line 70
            aload 0 /* this */
            lload 2 /* timeout */
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.timeout:J
         4: .line 71
            aload 0 /* this */
            aload 4 /* unit */
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.unit:Ljava/util/concurrent/TimeUnit;
         5: .line 72
            aload 0 /* this */
            aload 5 /* worker */
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.worker:Lio/reactivex/Scheduler$Worker;
         6: .line 73
            return
        end local 5 // io.reactivex.Scheduler$Worker worker
        end local 4 // java.util.concurrent.TimeUnit unit
        end local 2 // long timeout
        end local 1 // org.reactivestreams.Subscriber actual
        end local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lio/reactivex/internal/operators/flowable/FlowableThrottleFirstTimed$DebounceTimedSubscriber<TT;>;
            0    7     1   actual  Lorg/reactivestreams/Subscriber<-TT;>;
            0    7     2  timeout  J
            0    7     4     unit  Ljava/util/concurrent/TimeUnit;
            0    7     5   worker  Lio/reactivex/Scheduler$Worker;
    Signature: (Lorg/reactivestreams/Subscriber<-TT;>;JLjava/util/concurrent/TimeUnit;Lio/reactivex/Scheduler$Worker;)V
    MethodParameters:
         Name  Flags
      actual   
      timeout  
      unit     
      worker   

  public void onSubscribe(org.reactivestreams.Subscription);
    descriptor: (Lorg/reactivestreams/Subscription;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber this
        start local 1 // org.reactivestreams.Subscription s
         0: .line 77
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.upstream:Lorg/reactivestreams/Subscription;
            aload 1 /* s */
            invokestatic io.reactivex.internal.subscriptions.SubscriptionHelper.validate:(Lorg/reactivestreams/Subscription;Lorg/reactivestreams/Subscription;)Z
            ifeq 4
         1: .line 78
            aload 0 /* this */
            aload 1 /* s */
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.upstream:Lorg/reactivestreams/Subscription;
         2: .line 79
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            aload 0 /* this */
            invokeinterface org.reactivestreams.Subscriber.onSubscribe:(Lorg/reactivestreams/Subscription;)V
         3: .line 80
            aload 1 /* s */
            ldc 9223372036854775807
            invokeinterface org.reactivestreams.Subscription.request:(J)V
         4: .line 82
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.reactivestreams.Subscription s
        end local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/reactivex/internal/operators/flowable/FlowableThrottleFirstTimed$DebounceTimedSubscriber<TT;>;
            0    5     1     s  Lorg/reactivestreams/Subscription;
    MethodParameters:
      Name  Flags
      s     

  public void onNext();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber this
        start local 1 // java.lang.Object t
         0: .line 86
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.done:Z
            ifeq 2
         1: .line 87
            return
         2: .line 90
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.gate:Z
            ifne 17
         3: .line 91
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.gate:Z
         4: .line 92
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.get:()J
            lstore 2 /* r */
        start local 2 // long r
         5: .line 93
            lload 2 /* r */
            lconst_0
            lcmp
            ifeq 9
         6: .line 94
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            aload 1 /* t */
            invokeinterface org.reactivestreams.Subscriber.onNext:(Ljava/lang/Object;)V
         7: .line 95
            aload 0 /* this */
            lconst_1
            invokestatic io.reactivex.internal.util.BackpressureHelper.produced:(Ljava/util/concurrent/atomic/AtomicLong;J)J
            pop2
         8: .line 96
            goto 13
         9: .line 97
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.done:Z
        10: .line 98
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.cancel:()V
        11: .line 99
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            new io.reactivex.exceptions.MissingBackpressureException
            dup
            ldc "Could not deliver value due to lack of requests"
            invokespecial io.reactivex.exceptions.MissingBackpressureException.<init>:(Ljava/lang/String;)V
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
        12: .line 100
            return
        13: .line 103
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.timer:Lio/reactivex/internal/disposables/SequentialDisposable;
            invokevirtual io.reactivex.internal.disposables.SequentialDisposable.get:()Ljava/lang/Object;
            checkcast io.reactivex.disposables.Disposable
            astore 4 /* d */
        start local 4 // io.reactivex.disposables.Disposable d
        14: .line 104
            aload 4 /* d */
            ifnull 16
        15: .line 105
            aload 4 /* d */
            invokeinterface io.reactivex.disposables.Disposable.dispose:()V
        16: .line 108
      StackMap locals: io.reactivex.disposables.Disposable
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.timer:Lio/reactivex/internal/disposables/SequentialDisposable;
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.worker:Lio/reactivex/Scheduler$Worker;
            aload 0 /* this */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.timeout:J
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.unit:Ljava/util/concurrent/TimeUnit;
            invokevirtual io.reactivex.Scheduler$Worker.schedule:(Ljava/lang/Runnable;JLjava/util/concurrent/TimeUnit;)Lio/reactivex/disposables/Disposable;
            invokevirtual io.reactivex.internal.disposables.SequentialDisposable.replace:(Lio/reactivex/disposables/Disposable;)Z
            pop
        end local 4 // io.reactivex.disposables.Disposable d
        end local 2 // long r
        17: .line 110
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Object t
        end local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lio/reactivex/internal/operators/flowable/FlowableThrottleFirstTimed$DebounceTimedSubscriber<TT;>;
            0   18     1     t  TT;
            5   17     2     r  J
           14   17     4     d  Lio/reactivex/disposables/Disposable;
    Signature: (TT;)V
    MethodParameters:
      Name  Flags
      t     

  public void run();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber this
         0: .line 114
            aload 0 /* this */
            iconst_0
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.gate:Z
         1: .line 115
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/operators/flowable/FlowableThrottleFirstTimed$DebounceTimedSubscriber<TT;>;

  public void onError(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber this
        start local 1 // java.lang.Throwable t
         0: .line 119
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.done:Z
            ifeq 3
         1: .line 120
            aload 1 /* t */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
         2: .line 121
            return
         3: .line 123
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.done:Z
         4: .line 124
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            aload 1 /* t */
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
         5: .line 125
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.worker:Lio/reactivex/Scheduler$Worker;
            invokevirtual io.reactivex.Scheduler$Worker.dispose:()V
         6: .line 126
            return
        end local 1 // java.lang.Throwable t
        end local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/reactivex/internal/operators/flowable/FlowableThrottleFirstTimed$DebounceTimedSubscriber<TT;>;
            0    7     1     t  Ljava/lang/Throwable;
    MethodParameters:
      Name  Flags
      t     

  public void onComplete();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber this
         0: .line 130
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.done:Z
            ifeq 2
         1: .line 131
            return
         2: .line 133
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.done:Z
         3: .line 134
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            invokeinterface org.reactivestreams.Subscriber.onComplete:()V
         4: .line 135
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.worker:Lio/reactivex/Scheduler$Worker;
            invokevirtual io.reactivex.Scheduler$Worker.dispose:()V
         5: .line 136
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/reactivex/internal/operators/flowable/FlowableThrottleFirstTimed$DebounceTimedSubscriber<TT;>;

  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.FlowableThrottleFirstTimed$DebounceTimedSubscriber this
        start local 1 // long n
         0: .line 140
            lload 1 /* n */
            invokestatic io.reactivex.internal.subscriptions.SubscriptionHelper.validate:(J)Z
            ifeq 2
         1: .line 141
            aload 0 /* this */
            lload 1 /* n */
            invokestatic io.reactivex.internal.util.BackpressureHelper.add:(Ljava/util/concurrent/atomic/AtomicLong;J)J
            pop2
         2: .line 143
      StackMap locals:
      StackMap stack:
            return
        end local 1 // long n
        end local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/reactivex/internal/operators/flowable/FlowableThrottleFirstTimed$DebounceTimedSubscriber<TT;>;
            0    3     1     n  J
    MethodParameters:
      Name  Flags
      n     

  public void cancel();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber this
         0: .line 147
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.upstream:Lorg/reactivestreams/Subscription;
            invokeinterface org.reactivestreams.Subscription.cancel:()V
         1: .line 148
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.worker:Lio/reactivex/Scheduler$Worker;
            invokevirtual io.reactivex.Scheduler$Worker.dispose:()V
         2: .line 149
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/reactivex/internal/operators/flowable/FlowableThrottleFirstTimed$DebounceTimedSubscriber<TT;>;
}
Signature: <T:Ljava/lang/Object;>Ljava/util/concurrent/atomic/AtomicLong;Lio/reactivex/FlowableSubscriber<TT;>;Lorg/reactivestreams/Subscription;Ljava/lang/Runnable;
SourceFile: "FlowableThrottleFirstTimed.java"
NestHost: io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed
InnerClasses:
  public abstract Worker = io.reactivex.Scheduler$Worker of io.reactivex.Scheduler
  final DebounceTimedSubscriber = io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber of io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed