public final class io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed<T> extends io.reactivex.internal.operators.flowable.AbstractFlowableWithUpstream<T, T>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed
  super_class: io.reactivex.internal.operators.flowable.AbstractFlowableWithUpstream
{
  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 scheduler;
    descriptor: Lio/reactivex/Scheduler;
    flags: (0x0010) ACC_FINAL

  public void <init>(io.reactivex.Flowable<T>, long, java.util.concurrent.TimeUnit, io.reactivex.Scheduler);
    descriptor: (Lio/reactivex/Flowable;JLjava/util/concurrent/TimeUnit;Lio/reactivex/Scheduler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=5
        start local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed this
        start local 1 // io.reactivex.Flowable source
        start local 2 // long timeout
        start local 4 // java.util.concurrent.TimeUnit unit
        start local 5 // io.reactivex.Scheduler scheduler
         0: .line 37
            aload 0 /* this */
            aload 1 /* source */
            invokespecial io.reactivex.internal.operators.flowable.AbstractFlowableWithUpstream.<init>:(Lio/reactivex/Flowable;)V
         1: .line 38
            aload 0 /* this */
            lload 2 /* timeout */
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed.timeout:J
         2: .line 39
            aload 0 /* this */
            aload 4 /* unit */
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed.unit:Ljava/util/concurrent/TimeUnit;
         3: .line 40
            aload 0 /* this */
            aload 5 /* scheduler */
            putfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed.scheduler:Lio/reactivex/Scheduler;
         4: .line 41
            return
        end local 5 // io.reactivex.Scheduler scheduler
        end local 4 // java.util.concurrent.TimeUnit unit
        end local 2 // long timeout
        end local 1 // io.reactivex.Flowable source
        end local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lio/reactivex/internal/operators/flowable/FlowableThrottleFirstTimed<TT;>;
            0    5     1     source  Lio/reactivex/Flowable<TT;>;
            0    5     2    timeout  J
            0    5     4       unit  Ljava/util/concurrent/TimeUnit;
            0    5     5  scheduler  Lio/reactivex/Scheduler;
    Signature: (Lio/reactivex/Flowable<TT;>;JLjava/util/concurrent/TimeUnit;Lio/reactivex/Scheduler;)V
    MethodParameters:
           Name  Flags
      source     
      timeout    
      unit       
      scheduler  

  protected void subscribeActual(org.reactivestreams.Subscriber<? super T>);
    descriptor: (Lorg/reactivestreams/Subscriber;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=8, locals=2, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed this
        start local 1 // org.reactivestreams.Subscriber s
         0: .line 45
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed.source:Lio/reactivex/Flowable;
            new io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber
            dup
         1: .line 46
            new io.reactivex.subscribers.SerializedSubscriber
            dup
            aload 1 /* s */
            invokespecial io.reactivex.subscribers.SerializedSubscriber.<init>:(Lorg/reactivestreams/Subscriber;)V
         2: .line 47
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed.timeout:J
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed.unit:Ljava/util/concurrent/TimeUnit;
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed.scheduler:Lio/reactivex/Scheduler;
            invokevirtual io.reactivex.Scheduler.createWorker:()Lio/reactivex/Scheduler$Worker;
            invokespecial io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber.<init>:(Lorg/reactivestreams/Subscriber;JLjava/util/concurrent/TimeUnit;Lio/reactivex/Scheduler$Worker;)V
         3: .line 45
            invokevirtual io.reactivex.Flowable.subscribe:(Lio/reactivex/FlowableSubscriber;)V
         4: .line 48
            return
        end local 1 // org.reactivestreams.Subscriber s
        end local 0 // io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/reactivex/internal/operators/flowable/FlowableThrottleFirstTimed<TT;>;
            0    5     1     s  Lorg/reactivestreams/Subscriber<-TT;>;
    Signature: (Lorg/reactivestreams/Subscriber<-TT;>;)V
    MethodParameters:
      Name  Flags
      s     
}
Signature: <T:Ljava/lang/Object;>Lio/reactivex/internal/operators/flowable/AbstractFlowableWithUpstream<TT;TT;>;
SourceFile: "FlowableThrottleFirstTimed.java"
NestMembers:
  io.reactivex.internal.operators.flowable.FlowableThrottleFirstTimed$DebounceTimedSubscriber
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