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

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

  final long time;
    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 scheduler;
    descriptor: Lio/reactivex/Scheduler;
    flags: (0x0010) ACC_FINAL

  final io.reactivex.internal.queue.SpscLinkedArrayQueue<java.lang.Object> queue;
    descriptor: Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/internal/queue/SpscLinkedArrayQueue<Ljava/lang/Object;>;

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

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

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

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

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

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

  void <init>(org.reactivestreams.Subscriber<? super T>, long, java.util.concurrent.TimeUnit, io.reactivex.Scheduler, int, );
    descriptor: (Lorg/reactivestreams/Subscriber;JLjava/util/concurrent/TimeUnit;Lio/reactivex/Scheduler;IZ)V
    flags: (0x0000) 
    Code:
      stack=4, locals=8, args_size=7
        start local 0 // io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber this
        start local 1 // org.reactivestreams.Subscriber actual
        start local 2 // long time
        start local 4 // java.util.concurrent.TimeUnit unit
        start local 5 // io.reactivex.Scheduler scheduler
        start local 6 // int bufferSize
        start local 7 // boolean delayError
         0: .line 66
            aload 0 /* this */
            invokespecial java.util.concurrent.atomic.AtomicInteger.<init>:()V
         1: .line 59
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicLong
            dup
            invokespecial java.util.concurrent.atomic.AtomicLong.<init>:()V
            putfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.requested:Ljava/util/concurrent/atomic/AtomicLong;
         2: .line 67
            aload 0 /* this */
            aload 1 /* actual */
            putfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.downstream:Lorg/reactivestreams/Subscriber;
         3: .line 68
            aload 0 /* this */
            lload 2 /* time */
            putfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.time:J
         4: .line 69
            aload 0 /* this */
            aload 4 /* unit */
            putfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.unit:Ljava/util/concurrent/TimeUnit;
         5: .line 70
            aload 0 /* this */
            aload 5 /* scheduler */
            putfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.scheduler:Lio/reactivex/Scheduler;
         6: .line 71
            aload 0 /* this */
            new io.reactivex.internal.queue.SpscLinkedArrayQueue
            dup
            iload 6 /* bufferSize */
            invokespecial io.reactivex.internal.queue.SpscLinkedArrayQueue.<init>:(I)V
            putfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.queue:Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
         7: .line 72
            aload 0 /* this */
            iload 7 /* delayError */
            putfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.delayError:Z
         8: .line 73
            return
        end local 7 // boolean delayError
        end local 6 // int bufferSize
        end local 5 // io.reactivex.Scheduler scheduler
        end local 4 // java.util.concurrent.TimeUnit unit
        end local 2 // long time
        end local 1 // org.reactivestreams.Subscriber actual
        end local 0 // io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Lio/reactivex/internal/operators/flowable/FlowableSkipLastTimed$SkipLastTimedSubscriber<TT;>;
            0    9     1      actual  Lorg/reactivestreams/Subscriber<-TT;>;
            0    9     2        time  J
            0    9     4        unit  Ljava/util/concurrent/TimeUnit;
            0    9     5   scheduler  Lio/reactivex/Scheduler;
            0    9     6  bufferSize  I
            0    9     7  delayError  Z
    Signature: (Lorg/reactivestreams/Subscriber<-TT;>;JLjava/util/concurrent/TimeUnit;Lio/reactivex/Scheduler;IZ)V
    MethodParameters:
            Name  Flags
      actual      
      time        
      unit        
      scheduler   
      bufferSize  
      delayError  

  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.FlowableSkipLastTimed$SkipLastTimedSubscriber this
        start local 1 // org.reactivestreams.Subscription s
         0: .line 77
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.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.FlowableSkipLastTimed$SkipLastTimedSubscriber.upstream:Lorg/reactivestreams/Subscription;
         2: .line 79
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.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.FlowableSkipLastTimed$SkipLastTimedSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/reactivex/internal/operators/flowable/FlowableSkipLastTimed$SkipLastTimedSubscriber<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=3, locals=4, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber this
        start local 1 // java.lang.Object t
         0: .line 86
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.scheduler:Lio/reactivex/Scheduler;
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.unit:Ljava/util/concurrent/TimeUnit;
            invokevirtual io.reactivex.Scheduler.now:(Ljava/util/concurrent/TimeUnit;)J
            lstore 2 /* now */
        start local 2 // long now
         1: .line 88
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.queue:Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
            lload 2 /* now */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            aload 1 /* t */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.offer:(Ljava/lang/Object;Ljava/lang/Object;)Z
            pop
         2: .line 90
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.drain:()V
         3: .line 91
            return
        end local 2 // long now
        end local 1 // java.lang.Object t
        end local 0 // io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/reactivex/internal/operators/flowable/FlowableSkipLastTimed$SkipLastTimedSubscriber<TT;>;
            0    4     1     t  TT;
            1    4     2   now  J
    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.FlowableSkipLastTimed$SkipLastTimedSubscriber this
        start local 1 // java.lang.Throwable t
         0: .line 95
            aload 0 /* this */
            aload 1 /* t */
            putfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.error:Ljava/lang/Throwable;
         1: .line 96
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.done:Z
         2: .line 97
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.drain:()V
         3: .line 98
            return
        end local 1 // java.lang.Throwable t
        end local 0 // io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/reactivex/internal/operators/flowable/FlowableSkipLastTimed$SkipLastTimedSubscriber<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.FlowableSkipLastTimed$SkipLastTimedSubscriber this
         0: .line 102
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.done:Z
         1: .line 103
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.drain:()V
         2: .line 104
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/reactivex/internal/operators/flowable/FlowableSkipLastTimed$SkipLastTimedSubscriber<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.FlowableSkipLastTimed$SkipLastTimedSubscriber this
        start local 1 // long n
         0: .line 108
            lload 1 /* n */
            invokestatic io.reactivex.internal.subscriptions.SubscriptionHelper.validate:(J)Z
            ifeq 3
         1: .line 109
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.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 110
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.drain:()V
         3: .line 112
      StackMap locals:
      StackMap stack:
            return
        end local 1 // long n
        end local 0 // io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/reactivex/internal/operators/flowable/FlowableSkipLastTimed$SkipLastTimedSubscriber<TT;>;
            0    4     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.FlowableSkipLastTimed$SkipLastTimedSubscriber this
         0: .line 116
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.cancelled:Z
            ifne 5
         1: .line 117
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.cancelled:Z
         2: .line 118
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.upstream:Lorg/reactivestreams/Subscription;
            invokeinterface org.reactivestreams.Subscription.cancel:()V
         3: .line 120
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.getAndIncrement:()I
            ifne 5
         4: .line 121
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.queue:Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.clear:()V
         5: .line 124
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/reactivex/internal/operators/flowable/FlowableSkipLastTimed$SkipLastTimedSubscriber<TT;>;

  void drain();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=6, locals=19, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber this
         0: .line 127
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.getAndIncrement:()I
            ifeq 2
         1: .line 128
            return
         2: .line 131
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 1 /* missed */
        start local 1 // int missed
         3: .line 133
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            astore 2 /* a */
        start local 2 // org.reactivestreams.Subscriber a
         4: .line 134
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.queue:Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
            astore 3 /* q */
        start local 3 // io.reactivex.internal.queue.SpscLinkedArrayQueue q
         5: .line 135
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.delayError:Z
            istore 4 /* delayError */
        start local 4 // boolean delayError
         6: .line 136
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.unit:Ljava/util/concurrent/TimeUnit;
            astore 5 /* unit */
        start local 5 // java.util.concurrent.TimeUnit unit
         7: .line 137
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.scheduler:Lio/reactivex/Scheduler;
            astore 6 /* scheduler */
        start local 6 // io.reactivex.Scheduler scheduler
         8: .line 138
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.time:J
            lstore 7 /* time */
        start local 7 // long time
         9: .line 142
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber int org.reactivestreams.Subscriber io.reactivex.internal.queue.SpscLinkedArrayQueue int java.util.concurrent.TimeUnit io.reactivex.Scheduler long
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.requested:Ljava/util/concurrent/atomic/AtomicLong;
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lstore 9 /* r */
        start local 9 // long r
        10: .line 143
            lconst_0
            lstore 11 /* e */
        start local 11 // long e
        11: .line 145
            goto 28
        12: .line 146
      StackMap locals: long long
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.done:Z
            istore 13 /* d */
        start local 13 // boolean d
        13: .line 148
            aload 3 /* q */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.peek:()Ljava/lang/Object;
            checkcast java.lang.Long
            astore 14 /* ts */
        start local 14 // java.lang.Long ts
        14: .line 150
            aload 14 /* ts */
            ifnonnull 15
            iconst_1
            goto 16
      StackMap locals: int java.lang.Long
      StackMap stack:
        15: iconst_0
      StackMap locals:
      StackMap stack: int
        16: istore 15 /* empty */
        start local 15 // boolean empty
        17: .line 152
            aload 6 /* scheduler */
            aload 5 /* unit */
            invokevirtual io.reactivex.Scheduler.now:(Ljava/util/concurrent/TimeUnit;)J
            lstore 16 /* now */
        start local 16 // long now
        18: .line 154
            iload 15 /* empty */
            ifne 20
            aload 14 /* ts */
            invokevirtual java.lang.Long.longValue:()J
            lload 16 /* now */
            lload 7 /* time */
            lsub
            lcmp
            ifle 20
        19: .line 155
            iconst_1
            istore 15 /* empty */
        20: .line 158
      StackMap locals: int long
      StackMap stack:
            aload 0 /* this */
            iload 13 /* d */
            iload 15 /* empty */
            aload 2 /* a */
            iload 4 /* delayError */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.checkTerminated:(ZZLorg/reactivestreams/Subscriber;Z)Z
            ifeq 22
        21: .line 159
            return
        22: .line 162
      StackMap locals:
      StackMap stack:
            iload 15 /* empty */
            ifeq 24
        23: .line 163
            goto 29
        24: .line 166
      StackMap locals:
      StackMap stack:
            aload 3 /* q */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.poll:()Ljava/lang/Object;
            pop
        25: .line 168
            aload 3 /* q */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.poll:()Ljava/lang/Object;
            astore 18 /* v */
        start local 18 // java.lang.Object v
        26: .line 170
            aload 2 /* a */
            aload 18 /* v */
            invokeinterface org.reactivestreams.Subscriber.onNext:(Ljava/lang/Object;)V
        27: .line 172
            lload 11 /* e */
            lconst_1
            ladd
            lstore 11 /* e */
        end local 18 // java.lang.Object v
        end local 16 // long now
        end local 15 // boolean empty
        end local 14 // java.lang.Long ts
        end local 13 // boolean d
        28: .line 145
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber int org.reactivestreams.Subscriber io.reactivex.internal.queue.SpscLinkedArrayQueue int java.util.concurrent.TimeUnit io.reactivex.Scheduler long long long
      StackMap stack:
            lload 11 /* e */
            lload 9 /* r */
            lcmp
            ifne 12
        29: .line 175
      StackMap locals:
      StackMap stack:
            lload 11 /* e */
            lconst_0
            lcmp
            ifeq 31
        30: .line 176
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.requested:Ljava/util/concurrent/atomic/AtomicLong;
            lload 11 /* e */
            invokestatic io.reactivex.internal.util.BackpressureHelper.produced:(Ljava/util/concurrent/atomic/AtomicLong;J)J
            pop2
        31: .line 179
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* missed */
            ineg
            invokevirtual io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.addAndGet:(I)I
            istore 1 /* missed */
        32: .line 180
            iload 1 /* missed */
            ifne 9
        end local 11 // long e
        end local 9 // long r
        33: .line 184
            return
        end local 7 // long time
        end local 6 // io.reactivex.Scheduler scheduler
        end local 5 // java.util.concurrent.TimeUnit unit
        end local 4 // boolean delayError
        end local 3 // io.reactivex.internal.queue.SpscLinkedArrayQueue q
        end local 2 // org.reactivestreams.Subscriber a
        end local 1 // int missed
        end local 0 // io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   34     0        this  Lio/reactivex/internal/operators/flowable/FlowableSkipLastTimed$SkipLastTimedSubscriber<TT;>;
            3   34     1      missed  I
            4   34     2           a  Lorg/reactivestreams/Subscriber<-TT;>;
            5   34     3           q  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<Ljava/lang/Object;>;
            6   34     4  delayError  Z
            7   34     5        unit  Ljava/util/concurrent/TimeUnit;
            8   34     6   scheduler  Lio/reactivex/Scheduler;
            9   34     7        time  J
           10   33     9           r  J
           11   33    11           e  J
           13   28    13           d  Z
           14   28    14          ts  Ljava/lang/Long;
           17   28    15       empty  Z
           18   28    16         now  J
           26   28    18           v  TT;

  boolean checkTerminated(boolean, boolean, org.reactivestreams.Subscriber<? super T>, );
    descriptor: (ZZLorg/reactivestreams/Subscriber;Z)Z
    flags: (0x0000) 
    Code:
      stack=2, locals=6, args_size=5
        start local 0 // io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber this
        start local 1 // boolean d
        start local 2 // boolean empty
        start local 3 // org.reactivestreams.Subscriber a
        start local 4 // boolean delayError
         0: .line 187
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.cancelled:Z
            ifeq 3
         1: .line 188
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.queue:Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.clear:()V
         2: .line 189
            iconst_1
            ireturn
         3: .line 191
      StackMap locals:
      StackMap stack:
            iload 1 /* d */
            ifeq 20
         4: .line 192
            iload 4 /* delayError */
            ifeq 12
         5: .line 193
            iload 2 /* empty */
            ifeq 20
         6: .line 194
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.error:Ljava/lang/Throwable;
            astore 5 /* e */
        start local 5 // java.lang.Throwable e
         7: .line 195
            aload 5 /* e */
            ifnull 10
         8: .line 196
            aload 3 /* a */
            aload 5 /* e */
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
         9: .line 197
            goto 11
        10: .line 198
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 3 /* a */
            invokeinterface org.reactivestreams.Subscriber.onComplete:()V
        11: .line 200
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 5 // java.lang.Throwable e
        12: .line 203
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.error:Ljava/lang/Throwable;
            astore 5 /* e */
        start local 5 // java.lang.Throwable e
        13: .line 204
            aload 5 /* e */
            ifnull 17
        14: .line 205
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber.queue:Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.clear:()V
        15: .line 206
            aload 3 /* a */
            aload 5 /* e */
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
        16: .line 207
            iconst_1
            ireturn
        17: .line 209
      StackMap locals: java.lang.Throwable
      StackMap stack:
            iload 2 /* empty */
            ifeq 20
        18: .line 210
            aload 3 /* a */
            invokeinterface org.reactivestreams.Subscriber.onComplete:()V
        19: .line 211
            iconst_1
            ireturn
        end local 5 // java.lang.Throwable e
        20: .line 215
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 4 // boolean delayError
        end local 3 // org.reactivestreams.Subscriber a
        end local 2 // boolean empty
        end local 1 // boolean d
        end local 0 // io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   21     0        this  Lio/reactivex/internal/operators/flowable/FlowableSkipLastTimed$SkipLastTimedSubscriber<TT;>;
            0   21     1           d  Z
            0   21     2       empty  Z
            0   21     3           a  Lorg/reactivestreams/Subscriber<-TT;>;
            0   21     4  delayError  Z
            7   12     5           e  Ljava/lang/Throwable;
           13   20     5           e  Ljava/lang/Throwable;
    Signature: (ZZLorg/reactivestreams/Subscriber<-TT;>;Z)Z
    MethodParameters:
            Name  Flags
      d           
      empty       
      a           
      delayError  
}
Signature: <T:Ljava/lang/Object;>Ljava/util/concurrent/atomic/AtomicInteger;Lio/reactivex/FlowableSubscriber<TT;>;Lorg/reactivestreams/Subscription;
SourceFile: "FlowableSkipLastTimed.java"
NestHost: io.reactivex.internal.operators.flowable.FlowableSkipLastTimed
InnerClasses:
  final SkipLastTimedSubscriber = io.reactivex.internal.operators.flowable.FlowableSkipLastTimed$SkipLastTimedSubscriber of io.reactivex.internal.operators.flowable.FlowableSkipLastTimed