final class io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber<T> extends java.util.concurrent.atomic.AtomicInteger 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.FlowableThrottleLatest$ThrottleLatestSubscriber
  super_class: java.util.concurrent.atomic.AtomicInteger
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -8296689127439125014

  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

  final boolean emitLast;
    descriptor: Z
    flags: (0x0010) ACC_FINAL

  final java.util.concurrent.atomic.AtomicReference<T> latest;
    descriptor: Ljava/util/concurrent/atomic/AtomicReference;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/concurrent/atomic/AtomicReference<TT;>;

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

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

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

  java.lang.Throwable error;
    descriptor: Ljava/lang/Throwable;
    flags: (0x0000) 

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

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

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

  boolean timerRunning;
    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;Z)V
    flags: (0x0000) 
    Code:
      stack=3, locals=7, args_size=6
        start local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber this
        start local 1 // org.reactivestreams.Subscriber downstream
        start local 2 // long timeout
        start local 4 // java.util.concurrent.TimeUnit unit
        start local 5 // io.reactivex.Scheduler$Worker worker
        start local 6 // boolean emitLast
         0: .line 95
            aload 0 /* this */
            invokespecial java.util.concurrent.atomic.AtomicInteger.<init>:()V
         1: .line 98
            aload 0 /* this */
            aload 1 /* downstream */
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.downstream:Lorg/reactivestreams/Subscriber;
         2: .line 99
            aload 0 /* this */
            lload 2 /* timeout */
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.timeout:J
         3: .line 100
            aload 0 /* this */
            aload 4 /* unit */
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.unit:Ljava/util/concurrent/TimeUnit;
         4: .line 101
            aload 0 /* this */
            aload 5 /* worker */
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.worker:Lio/reactivex/Scheduler$Worker;
         5: .line 102
            aload 0 /* this */
            iload 6 /* emitLast */
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.emitLast:Z
         6: .line 103
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicReference
            dup
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:()V
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.latest:Ljava/util/concurrent/atomic/AtomicReference;
         7: .line 104
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicLong
            dup
            invokespecial java.util.concurrent.atomic.AtomicLong.<init>:()V
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.requested:Ljava/util/concurrent/atomic/AtomicLong;
         8: .line 105
            return
        end local 6 // boolean emitLast
        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 downstream
        end local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Lio/reactivex/internal/operators/flowable/FlowableThrottleLatest$ThrottleLatestSubscriber<TT;>;
            0    9     1  downstream  Lorg/reactivestreams/Subscriber<-TT;>;
            0    9     2     timeout  J
            0    9     4        unit  Ljava/util/concurrent/TimeUnit;
            0    9     5      worker  Lio/reactivex/Scheduler$Worker;
            0    9     6    emitLast  Z
    Signature: (Lorg/reactivestreams/Subscriber<-TT;>;JLjava/util/concurrent/TimeUnit;Lio/reactivex/Scheduler$Worker;Z)V
    MethodParameters:
            Name  Flags
      downstream  
      timeout     
      unit        
      worker      
      emitLast    

  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.FlowableThrottleLatest$ThrottleLatestSubscriber this
        start local 1 // org.reactivestreams.Subscription s
         0: .line 109
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.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 110
            aload 0 /* this */
            aload 1 /* s */
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.upstream:Lorg/reactivestreams/Subscription;
         2: .line 111
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            aload 0 /* this */
            invokeinterface org.reactivestreams.Subscriber.onSubscribe:(Lorg/reactivestreams/Subscription;)V
         3: .line 112
            aload 1 /* s */
            ldc 9223372036854775807
            invokeinterface org.reactivestreams.Subscription.request:(J)V
         4: .line 114
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.reactivestreams.Subscription s
        end local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/reactivex/internal/operators/flowable/FlowableThrottleLatest$ThrottleLatestSubscriber<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=2, locals=2, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber this
        start local 1 // java.lang.Object t
         0: .line 118
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.latest:Ljava/util/concurrent/atomic/AtomicReference;
            aload 1 /* t */
            invokevirtual java.util.concurrent.atomic.AtomicReference.set:(Ljava/lang/Object;)V
         1: .line 119
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.drain:()V
         2: .line 120
            return
        end local 1 // java.lang.Object t
        end local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/reactivex/internal/operators/flowable/FlowableThrottleLatest$ThrottleLatestSubscriber<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=2, locals=2, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber this
        start local 1 // java.lang.Throwable t
         0: .line 124
            aload 0 /* this */
            aload 1 /* t */
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.error:Ljava/lang/Throwable;
         1: .line 125
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.done:Z
         2: .line 126
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.drain:()V
         3: .line 127
            return
        end local 1 // java.lang.Throwable t
        end local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/reactivex/internal/operators/flowable/FlowableThrottleLatest$ThrottleLatestSubscriber<TT;>;
            0    4     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.FlowableThrottleLatest$ThrottleLatestSubscriber this
         0: .line 131
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.done:Z
         1: .line 132
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.drain:()V
         2: .line 133
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/reactivex/internal/operators/flowable/FlowableThrottleLatest$ThrottleLatestSubscriber<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.FlowableThrottleLatest$ThrottleLatestSubscriber this
        start local 1 // long n
         0: .line 137
            lload 1 /* n */
            invokestatic io.reactivex.internal.subscriptions.SubscriptionHelper.validate:(J)Z
            ifeq 2
         1: .line 138
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.requested:Ljava/util/concurrent/atomic/AtomicLong;
            lload 1 /* n */
            invokestatic io.reactivex.internal.util.BackpressureHelper.add:(Ljava/util/concurrent/atomic/AtomicLong;J)J
            pop2
         2: .line 140
      StackMap locals:
      StackMap stack:
            return
        end local 1 // long n
        end local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/reactivex/internal/operators/flowable/FlowableThrottleLatest$ThrottleLatestSubscriber<TT;>;
            0    3     1     n  J
    MethodParameters:
      Name  Flags
      n     

  public void cancel();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber this
         0: .line 144
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.cancelled:Z
         1: .line 145
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.upstream:Lorg/reactivestreams/Subscription;
            invokeinterface org.reactivestreams.Subscription.cancel:()V
         2: .line 146
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.worker:Lio/reactivex/Scheduler$Worker;
            invokevirtual io.reactivex.Scheduler$Worker.dispose:()V
         3: .line 147
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.getAndIncrement:()I
            ifne 5
         4: .line 148
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.latest:Ljava/util/concurrent/atomic/AtomicReference;
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.lazySet:(Ljava/lang/Object;)V
         5: .line 150
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/reactivex/internal/operators/flowable/FlowableThrottleLatest$ThrottleLatestSubscriber<TT;>;

  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.FlowableThrottleLatest$ThrottleLatestSubscriber this
         0: .line 154
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.timerFired:Z
         1: .line 155
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.drain:()V
         2: .line 156
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/reactivex/internal/operators/flowable/FlowableThrottleLatest$ThrottleLatestSubscriber<TT;>;

  void drain();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=5, locals=10, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber this
         0: .line 159
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.getAndIncrement:()I
            ifeq 2
         1: .line 160
            return
         2: .line 163
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 1 /* missed */
        start local 1 // int missed
         3: .line 165
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.latest:Ljava/util/concurrent/atomic/AtomicReference;
            astore 2 /* latest */
        start local 2 // java.util.concurrent.atomic.AtomicReference latest
         4: .line 166
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.requested:Ljava/util/concurrent/atomic/AtomicLong;
            astore 3 /* requested */
        start local 3 // java.util.concurrent.atomic.AtomicLong requested
         5: .line 167
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            astore 4 /* downstream */
        start local 4 // org.reactivestreams.Subscriber downstream
         6: .line 172
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber int java.util.concurrent.atomic.AtomicReference java.util.concurrent.atomic.AtomicLong org.reactivestreams.Subscriber
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.cancelled:Z
            ifeq 9
         7: .line 173
            aload 2 /* latest */
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.lazySet:(Ljava/lang/Object;)V
         8: .line 174
            return
         9: .line 177
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.done:Z
            istore 5 /* d */
        start local 5 // boolean d
        10: .line 179
            iload 5 /* d */
            ifeq 15
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.error:Ljava/lang/Throwable;
            ifnull 15
        11: .line 180
            aload 2 /* latest */
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.lazySet:(Ljava/lang/Object;)V
        12: .line 181
            aload 4 /* downstream */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.error:Ljava/lang/Throwable;
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
        13: .line 182
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.worker:Lio/reactivex/Scheduler$Worker;
            invokevirtual io.reactivex.Scheduler$Worker.dispose:()V
        14: .line 183
            return
        15: .line 186
      StackMap locals: int
      StackMap stack:
            aload 2 /* latest */
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            astore 6 /* v */
        start local 6 // java.lang.Object v
        16: .line 187
            aload 6 /* v */
            ifnonnull 17
            iconst_1
            goto 18
      StackMap locals: java.lang.Object
      StackMap stack:
        17: iconst_0
      StackMap locals:
      StackMap stack: int
        18: istore 7 /* empty */
        start local 7 // boolean empty
        19: .line 189
            iload 5 /* d */
            ifeq 36
        20: .line 190
            iload 7 /* empty */
            ifne 32
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.emitLast:Z
            ifeq 32
        21: .line 191
            aload 2 /* latest */
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.getAndSet:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 6 /* v */
        22: .line 192
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.emitted:J
            lstore 8 /* e */
        start local 8 // long e
        23: .line 193
            lload 8 /* e */
            aload 3 /* requested */
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lcmp
            ifeq 28
        24: .line 194
            aload 0 /* this */
            lload 8 /* e */
            lconst_1
            ladd
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.emitted:J
        25: .line 195
            aload 4 /* downstream */
            aload 6 /* v */
            invokeinterface org.reactivestreams.Subscriber.onNext:(Ljava/lang/Object;)V
        26: .line 196
            aload 4 /* downstream */
            invokeinterface org.reactivestreams.Subscriber.onComplete:()V
        27: .line 197
            goto 34
        28: .line 198
      StackMap locals: int long
      StackMap stack:
            aload 4 /* downstream */
            new io.reactivex.exceptions.MissingBackpressureException
            dup
        29: .line 199
            ldc "Could not emit final value due to lack of requests"
            invokespecial io.reactivex.exceptions.MissingBackpressureException.<init>:(Ljava/lang/String;)V
        30: .line 198
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
        end local 8 // long e
        31: .line 201
            goto 34
        32: .line 202
      StackMap locals:
      StackMap stack:
            aload 2 /* latest */
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.lazySet:(Ljava/lang/Object;)V
        33: .line 203
            aload 4 /* downstream */
            invokeinterface org.reactivestreams.Subscriber.onComplete:()V
        34: .line 205
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.worker:Lio/reactivex/Scheduler$Worker;
            invokevirtual io.reactivex.Scheduler$Worker.dispose:()V
        35: .line 206
            return
        36: .line 209
      StackMap locals:
      StackMap stack:
            iload 7 /* empty */
            ifeq 41
        37: .line 210
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.timerFired:Z
            ifeq 58
        38: .line 211
            aload 0 /* this */
            iconst_0
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.timerRunning:Z
        39: .line 212
            aload 0 /* this */
            iconst_0
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.timerFired:Z
        40: .line 214
            goto 58
        41: .line 217
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.timerRunning:Z
            ifeq 42
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.timerFired:Z
            ifeq 58
        42: .line 218
      StackMap locals:
      StackMap stack:
            aload 2 /* latest */
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.getAndSet:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 6 /* v */
        43: .line 219
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.emitted:J
            lstore 8 /* e */
        start local 8 // long e
        44: .line 220
            lload 8 /* e */
            aload 3 /* requested */
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lcmp
            ifeq 48
        45: .line 221
            aload 4 /* downstream */
            aload 6 /* v */
            invokeinterface org.reactivestreams.Subscriber.onNext:(Ljava/lang/Object;)V
        46: .line 222
            aload 0 /* this */
            lload 8 /* e */
            lconst_1
            ladd
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.emitted:J
        47: .line 223
            goto 54
        48: .line 224
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.upstream:Lorg/reactivestreams/Subscription;
            invokeinterface org.reactivestreams.Subscription.cancel:()V
        49: .line 225
            aload 4 /* downstream */
            new io.reactivex.exceptions.MissingBackpressureException
            dup
        50: .line 226
            ldc "Could not emit value due to lack of requests"
            invokespecial io.reactivex.exceptions.MissingBackpressureException.<init>:(Ljava/lang/String;)V
        51: .line 225
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
        52: .line 227
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.worker:Lio/reactivex/Scheduler$Worker;
            invokevirtual io.reactivex.Scheduler$Worker.dispose:()V
        53: .line 228
            return
        54: .line 231
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.timerFired:Z
        55: .line 232
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.timerRunning:Z
        56: .line 233
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.worker:Lio/reactivex/Scheduler$Worker;
            aload 0 /* this */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.timeout:J
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.unit:Ljava/util/concurrent/TimeUnit;
            invokevirtual io.reactivex.Scheduler$Worker.schedule:(Ljava/lang/Runnable;JLjava/util/concurrent/TimeUnit;)Lio/reactivex/disposables/Disposable;
            pop
        end local 8 // long e
        end local 7 // boolean empty
        end local 6 // java.lang.Object v
        end local 5 // boolean d
        57: .line 171
            goto 6
        58: .line 239
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber int java.util.concurrent.atomic.AtomicReference java.util.concurrent.atomic.AtomicLong org.reactivestreams.Subscriber
      StackMap stack:
            aload 0 /* this */
            iload 1 /* missed */
            ineg
            invokevirtual io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber.addAndGet:(I)I
            istore 1 /* missed */
        59: .line 240
            iload 1 /* missed */
            ifne 6
        60: .line 244
            return
        end local 4 // org.reactivestreams.Subscriber downstream
        end local 3 // java.util.concurrent.atomic.AtomicLong requested
        end local 2 // java.util.concurrent.atomic.AtomicReference latest
        end local 1 // int missed
        end local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   61     0        this  Lio/reactivex/internal/operators/flowable/FlowableThrottleLatest$ThrottleLatestSubscriber<TT;>;
            3   61     1      missed  I
            4   61     2      latest  Ljava/util/concurrent/atomic/AtomicReference<TT;>;
            5   61     3   requested  Ljava/util/concurrent/atomic/AtomicLong;
            6   61     4  downstream  Lorg/reactivestreams/Subscriber<-TT;>;
           10   57     5           d  Z
           16   57     6           v  TT;
           19   57     7       empty  Z
           23   31     8           e  J
           44   57     8           e  J
}
Signature: <T:Ljava/lang/Object;>Ljava/util/concurrent/atomic/AtomicInteger;Lio/reactivex/FlowableSubscriber<TT;>;Lorg/reactivestreams/Subscription;Ljava/lang/Runnable;
SourceFile: "FlowableThrottleLatest.java"
NestHost: io.reactivex.internal.operators.flowable.FlowableThrottleLatest
InnerClasses:
  public abstract Worker = io.reactivex.Scheduler$Worker of io.reactivex.Scheduler
  final ThrottleLatestSubscriber = io.reactivex.internal.operators.flowable.FlowableThrottleLatest$ThrottleLatestSubscriber of io.reactivex.internal.operators.flowable.FlowableThrottleLatest