public final class io.reactivex.internal.operators.flowable.FlowableScanSeed<T, R> extends io.reactivex.internal.operators.flowable.AbstractFlowableWithUpstream<T, R>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.flowable.FlowableScanSeed
  super_class: io.reactivex.internal.operators.flowable.AbstractFlowableWithUpstream
{
  final io.reactivex.functions.BiFunction<R, ? super T, R> accumulator;
    descriptor: Lio/reactivex/functions/BiFunction;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/functions/BiFunction<TR;-TT;TR;>;

  final java.util.concurrent.Callable<R> seedSupplier;
    descriptor: Ljava/util/concurrent/Callable;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/concurrent/Callable<TR;>;

  public void <init>(io.reactivex.Flowable<T>, java.util.concurrent.Callable<R>, io.reactivex.functions.BiFunction<R, ? super T, R>);
    descriptor: (Lio/reactivex/Flowable;Ljava/util/concurrent/Callable;Lio/reactivex/functions/BiFunction;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // io.reactivex.internal.operators.flowable.FlowableScanSeed this
        start local 1 // io.reactivex.Flowable source
        start local 2 // java.util.concurrent.Callable seedSupplier
        start local 3 // io.reactivex.functions.BiFunction accumulator
         0: .line 35
            aload 0 /* this */
            aload 1 /* source */
            invokespecial io.reactivex.internal.operators.flowable.AbstractFlowableWithUpstream.<init>:(Lio/reactivex/Flowable;)V
         1: .line 36
            aload 0 /* this */
            aload 3 /* accumulator */
            putfield io.reactivex.internal.operators.flowable.FlowableScanSeed.accumulator:Lio/reactivex/functions/BiFunction;
         2: .line 37
            aload 0 /* this */
            aload 2 /* seedSupplier */
            putfield io.reactivex.internal.operators.flowable.FlowableScanSeed.seedSupplier:Ljava/util/concurrent/Callable;
         3: .line 38
            return
        end local 3 // io.reactivex.functions.BiFunction accumulator
        end local 2 // java.util.concurrent.Callable seedSupplier
        end local 1 // io.reactivex.Flowable source
        end local 0 // io.reactivex.internal.operators.flowable.FlowableScanSeed this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    4     0          this  Lio/reactivex/internal/operators/flowable/FlowableScanSeed<TT;TR;>;
            0    4     1        source  Lio/reactivex/Flowable<TT;>;
            0    4     2  seedSupplier  Ljava/util/concurrent/Callable<TR;>;
            0    4     3   accumulator  Lio/reactivex/functions/BiFunction<TR;-TT;TR;>;
    Signature: (Lio/reactivex/Flowable<TT;>;Ljava/util/concurrent/Callable<TR;>;Lio/reactivex/functions/BiFunction<TR;-TT;TR;>;)V
    MethodParameters:
              Name  Flags
      source        
      seedSupplier  
      accumulator   

  protected void subscribeActual(org.reactivestreams.Subscriber<? super R>);
    descriptor: (Lorg/reactivestreams/Subscriber;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=4, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableScanSeed this
        start local 1 // org.reactivestreams.Subscriber s
         0: .line 45
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableScanSeed.seedSupplier:Ljava/util/concurrent/Callable;
            invokeinterface java.util.concurrent.Callable.call:()Ljava/lang/Object;
            ldc "The seed supplied is null"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            astore 2 /* r */
        start local 2 // java.lang.Object r
         1: .line 46
            goto 6
        end local 2 // java.lang.Object r
      StackMap locals:
      StackMap stack: java.lang.Throwable
         2: astore 3 /* e */
        start local 3 // java.lang.Throwable e
         3: .line 47
            aload 3 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         4: .line 48
            aload 3 /* e */
            aload 1 /* s */
            invokestatic io.reactivex.internal.subscriptions.EmptySubscription.error:(Ljava/lang/Throwable;Lorg/reactivestreams/Subscriber;)V
         5: .line 49
            return
        end local 3 // java.lang.Throwable e
        start local 2 // java.lang.Object r
         6: .line 52
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableScanSeed.source:Lio/reactivex/Flowable;
            new io.reactivex.internal.operators.flowable.FlowableScanSeed$ScanSeedSubscriber
            dup
            aload 1 /* s */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableScanSeed.accumulator:Lio/reactivex/functions/BiFunction;
            aload 2 /* r */
            invokestatic io.reactivex.internal.operators.flowable.FlowableScanSeed.bufferSize:()I
            invokespecial io.reactivex.internal.operators.flowable.FlowableScanSeed$ScanSeedSubscriber.<init>:(Lorg/reactivestreams/Subscriber;Lio/reactivex/functions/BiFunction;Ljava/lang/Object;I)V
            invokevirtual io.reactivex.Flowable.subscribe:(Lio/reactivex/FlowableSubscriber;)V
         7: .line 53
            return
        end local 2 // java.lang.Object r
        end local 1 // org.reactivestreams.Subscriber s
        end local 0 // io.reactivex.internal.operators.flowable.FlowableScanSeed this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/reactivex/internal/operators/flowable/FlowableScanSeed<TT;TR;>;
            0    8     1     s  Lorg/reactivestreams/Subscriber<-TR;>;
            1    2     2     r  TR;
            6    8     2     r  TR;
            3    6     3     e  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.Throwable
    Signature: (Lorg/reactivestreams/Subscriber<-TR;>;)V
    MethodParameters:
      Name  Flags
      s     
}
Signature: <T:Ljava/lang/Object;R:Ljava/lang/Object;>Lio/reactivex/internal/operators/flowable/AbstractFlowableWithUpstream<TT;TR;>;
SourceFile: "FlowableScanSeed.java"
NestMembers:
  io.reactivex.internal.operators.flowable.FlowableScanSeed$ScanSeedSubscriber
InnerClasses:
  final ScanSeedSubscriber = io.reactivex.internal.operators.flowable.FlowableScanSeed$ScanSeedSubscriber of io.reactivex.internal.operators.flowable.FlowableScanSeed