public final class io.reactivex.internal.operators.flowable.FlowableToListSingle<T, U extends java.util.Collection<? super T>> extends io.reactivex.Single<U> implements io.reactivex.internal.fuseable.FuseToFlowable<U>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.flowable.FlowableToListSingle
  super_class: io.reactivex.Single
{
  final io.reactivex.Flowable<T> source;
    descriptor: Lio/reactivex/Flowable;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/Flowable<TT;>;

  final java.util.concurrent.Callable<U> collectionSupplier;
    descriptor: Ljava/util/concurrent/Callable;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/concurrent/Callable<TU;>;

  public void <init>(io.reactivex.Flowable<T>);
    descriptor: (Lio/reactivex/Flowable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableToListSingle this
        start local 1 // io.reactivex.Flowable source
         0: .line 39
            aload 0 /* this */
            aload 1 /* source */
            invokestatic io.reactivex.internal.util.ArrayListSupplier.asCallable:()Ljava/util/concurrent/Callable;
            invokespecial io.reactivex.internal.operators.flowable.FlowableToListSingle.<init>:(Lio/reactivex/Flowable;Ljava/util/concurrent/Callable;)V
         1: .line 40
            return
        end local 1 // io.reactivex.Flowable source
        end local 0 // io.reactivex.internal.operators.flowable.FlowableToListSingle this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/reactivex/internal/operators/flowable/FlowableToListSingle<TT;TU;>;
            0    2     1  source  Lio/reactivex/Flowable<TT;>;
    Signature: (Lio/reactivex/Flowable<TT;>;)V
    MethodParameters:
        Name  Flags
      source  

  public void <init>(io.reactivex.Flowable<T>, java.util.concurrent.Callable<U>);
    descriptor: (Lio/reactivex/Flowable;Ljava/util/concurrent/Callable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.reactivex.internal.operators.flowable.FlowableToListSingle this
        start local 1 // io.reactivex.Flowable source
        start local 2 // java.util.concurrent.Callable collectionSupplier
         0: .line 42
            aload 0 /* this */
            invokespecial io.reactivex.Single.<init>:()V
         1: .line 43
            aload 0 /* this */
            aload 1 /* source */
            putfield io.reactivex.internal.operators.flowable.FlowableToListSingle.source:Lio/reactivex/Flowable;
         2: .line 44
            aload 0 /* this */
            aload 2 /* collectionSupplier */
            putfield io.reactivex.internal.operators.flowable.FlowableToListSingle.collectionSupplier:Ljava/util/concurrent/Callable;
         3: .line 45
            return
        end local 2 // java.util.concurrent.Callable collectionSupplier
        end local 1 // io.reactivex.Flowable source
        end local 0 // io.reactivex.internal.operators.flowable.FlowableToListSingle this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    4     0                this  Lio/reactivex/internal/operators/flowable/FlowableToListSingle<TT;TU;>;
            0    4     1              source  Lio/reactivex/Flowable<TT;>;
            0    4     2  collectionSupplier  Ljava/util/concurrent/Callable<TU;>;
    Signature: (Lio/reactivex/Flowable<TT;>;Ljava/util/concurrent/Callable<TU;>;)V
    MethodParameters:
                    Name  Flags
      source              
      collectionSupplier  

  protected void subscribeActual(io.reactivex.SingleObserver<? super U>);
    descriptor: (Lio/reactivex/SingleObserver;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableToListSingle this
        start local 1 // io.reactivex.SingleObserver observer
         0: .line 51
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableToListSingle.collectionSupplier:Ljava/util/concurrent/Callable;
            invokeinterface java.util.concurrent.Callable.call:()Ljava/lang/Object;
            checkcast java.util.Collection
            ldc "The collectionSupplier returned a null collection. Null values are generally not allowed in 2.x operators and sources."
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            checkcast java.util.Collection
            astore 2 /* coll */
        start local 2 // java.util.Collection coll
         1: .line 52
            goto 6
        end local 2 // java.util.Collection coll
      StackMap locals:
      StackMap stack: java.lang.Throwable
         2: astore 3 /* e */
        start local 3 // java.lang.Throwable e
         3: .line 53
            aload 3 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         4: .line 54
            aload 3 /* e */
            aload 1 /* observer */
            invokestatic io.reactivex.internal.disposables.EmptyDisposable.error:(Ljava/lang/Throwable;Lio/reactivex/SingleObserver;)V
         5: .line 55
            return
        end local 3 // java.lang.Throwable e
        start local 2 // java.util.Collection coll
         6: .line 57
      StackMap locals: java.util.Collection
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableToListSingle.source:Lio/reactivex/Flowable;
            new io.reactivex.internal.operators.flowable.FlowableToListSingle$ToListSubscriber
            dup
            aload 1 /* observer */
            aload 2 /* coll */
            invokespecial io.reactivex.internal.operators.flowable.FlowableToListSingle$ToListSubscriber.<init>:(Lio/reactivex/SingleObserver;Ljava/util/Collection;)V
            invokevirtual io.reactivex.Flowable.subscribe:(Lio/reactivex/FlowableSubscriber;)V
         7: .line 58
            return
        end local 2 // java.util.Collection coll
        end local 1 // io.reactivex.SingleObserver observer
        end local 0 // io.reactivex.internal.operators.flowable.FlowableToListSingle this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lio/reactivex/internal/operators/flowable/FlowableToListSingle<TT;TU;>;
            0    8     1  observer  Lio/reactivex/SingleObserver<-TU;>;
            1    2     2      coll  TU;
            6    8     2      coll  TU;
            3    6     3         e  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.Throwable
    Signature: (Lio/reactivex/SingleObserver<-TU;>;)V
    MethodParameters:
          Name  Flags
      observer  

  public io.reactivex.Flowable<U> fuseToFlowable();
    descriptor: ()Lio/reactivex/Flowable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableToListSingle this
         0: .line 62
            new io.reactivex.internal.operators.flowable.FlowableToList
            dup
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableToListSingle.source:Lio/reactivex/Flowable;
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableToListSingle.collectionSupplier:Ljava/util/concurrent/Callable;
            invokespecial io.reactivex.internal.operators.flowable.FlowableToList.<init>:(Lio/reactivex/Flowable;Ljava/util/concurrent/Callable;)V
            invokestatic io.reactivex.plugins.RxJavaPlugins.onAssembly:(Lio/reactivex/Flowable;)Lio/reactivex/Flowable;
            areturn
        end local 0 // io.reactivex.internal.operators.flowable.FlowableToListSingle this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/reactivex/internal/operators/flowable/FlowableToListSingle<TT;TU;>;
    Signature: ()Lio/reactivex/Flowable<TU;>;
}
Signature: <T:Ljava/lang/Object;U::Ljava/util/Collection<-TT;>;>Lio/reactivex/Single<TU;>;Lio/reactivex/internal/fuseable/FuseToFlowable<TU;>;
SourceFile: "FlowableToListSingle.java"
NestMembers:
  io.reactivex.internal.operators.flowable.FlowableToListSingle$ToListSubscriber
InnerClasses:
  final ToListSubscriber = io.reactivex.internal.operators.flowable.FlowableToListSingle$ToListSubscriber of io.reactivex.internal.operators.flowable.FlowableToListSingle