public final class io.reactivex.internal.operators.flowable.FlowableUsing<T, D> extends io.reactivex.Flowable<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.flowable.FlowableUsing
  super_class: io.reactivex.Flowable
{
  final java.util.concurrent.Callable<? extends D> resourceSupplier;
    descriptor: Ljava/util/concurrent/Callable;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/concurrent/Callable<+TD;>;

  final io.reactivex.functions.Function<? super D, ? extends org.reactivestreams.Publisher<? extends T>> sourceSupplier;
    descriptor: Lio/reactivex/functions/Function;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/functions/Function<-TD;+Lorg/reactivestreams/Publisher<+TT;>;>;

  final io.reactivex.functions.Consumer<? super D> disposer;
    descriptor: Lio/reactivex/functions/Consumer;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/functions/Consumer<-TD;>;

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

  public void <init>(java.util.concurrent.Callable<? extends D>, io.reactivex.functions.Function<? super D, ? extends org.reactivestreams.Publisher<? extends T>>, io.reactivex.functions.Consumer<? super D>, );
    descriptor: (Ljava/util/concurrent/Callable;Lio/reactivex/functions/Function;Lio/reactivex/functions/Consumer;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // io.reactivex.internal.operators.flowable.FlowableUsing this
        start local 1 // java.util.concurrent.Callable resourceSupplier
        start local 2 // io.reactivex.functions.Function sourceSupplier
        start local 3 // io.reactivex.functions.Consumer disposer
        start local 4 // boolean eager
         0: .line 34
            aload 0 /* this */
            invokespecial io.reactivex.Flowable.<init>:()V
         1: .line 38
            aload 0 /* this */
            aload 1 /* resourceSupplier */
            putfield io.reactivex.internal.operators.flowable.FlowableUsing.resourceSupplier:Ljava/util/concurrent/Callable;
         2: .line 39
            aload 0 /* this */
            aload 2 /* sourceSupplier */
            putfield io.reactivex.internal.operators.flowable.FlowableUsing.sourceSupplier:Lio/reactivex/functions/Function;
         3: .line 40
            aload 0 /* this */
            aload 3 /* disposer */
            putfield io.reactivex.internal.operators.flowable.FlowableUsing.disposer:Lio/reactivex/functions/Consumer;
         4: .line 41
            aload 0 /* this */
            iload 4 /* eager */
            putfield io.reactivex.internal.operators.flowable.FlowableUsing.eager:Z
         5: .line 42
            return
        end local 4 // boolean eager
        end local 3 // io.reactivex.functions.Consumer disposer
        end local 2 // io.reactivex.functions.Function sourceSupplier
        end local 1 // java.util.concurrent.Callable resourceSupplier
        end local 0 // io.reactivex.internal.operators.flowable.FlowableUsing this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    6     0              this  Lio/reactivex/internal/operators/flowable/FlowableUsing<TT;TD;>;
            0    6     1  resourceSupplier  Ljava/util/concurrent/Callable<+TD;>;
            0    6     2    sourceSupplier  Lio/reactivex/functions/Function<-TD;+Lorg/reactivestreams/Publisher<+TT;>;>;
            0    6     3          disposer  Lio/reactivex/functions/Consumer<-TD;>;
            0    6     4             eager  Z
    Signature: (Ljava/util/concurrent/Callable<+TD;>;Lio/reactivex/functions/Function<-TD;+Lorg/reactivestreams/Publisher<+TT;>;>;Lio/reactivex/functions/Consumer<-TD;>;Z)V
    MethodParameters:
                  Name  Flags
      resourceSupplier  
      sourceSupplier    
      disposer          
      eager             

  public void subscribeActual(org.reactivestreams.Subscriber<? super T>);
    descriptor: (Lorg/reactivestreams/Subscriber;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableUsing this
        start local 1 // org.reactivestreams.Subscriber s
         0: .line 49
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableUsing.resourceSupplier:Ljava/util/concurrent/Callable;
            invokeinterface java.util.concurrent.Callable.call:()Ljava/lang/Object;
            astore 2 /* resource */
        start local 2 // java.lang.Object resource
         1: .line 50
            goto 6
        end local 2 // java.lang.Object resource
      StackMap locals:
      StackMap stack: java.lang.Throwable
         2: astore 3 /* e */
        start local 3 // java.lang.Throwable e
         3: .line 51
            aload 3 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         4: .line 52
            aload 3 /* e */
            aload 1 /* s */
            invokestatic io.reactivex.internal.subscriptions.EmptySubscription.error:(Ljava/lang/Throwable;Lorg/reactivestreams/Subscriber;)V
         5: .line 53
            return
        end local 3 // java.lang.Throwable e
        start local 2 // java.lang.Object resource
         6: .line 58
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableUsing.sourceSupplier:Lio/reactivex/functions/Function;
            aload 2 /* resource */
            invokeinterface io.reactivex.functions.Function.apply:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.reactivestreams.Publisher
            ldc "The sourceSupplier returned a null Publisher"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            checkcast org.reactivestreams.Publisher
            astore 3 /* source */
        start local 3 // org.reactivestreams.Publisher source
         7: .line 59
            goto 18
        end local 3 // org.reactivestreams.Publisher source
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: astore 4 /* e */
        start local 4 // java.lang.Throwable e
         9: .line 60
            aload 4 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        10: .line 62
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableUsing.disposer:Lio/reactivex/functions/Consumer;
            aload 2 /* resource */
            invokeinterface io.reactivex.functions.Consumer.accept:(Ljava/lang/Object;)V
        11: .line 63
            goto 16
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableUsing org.reactivestreams.Subscriber java.lang.Object top java.lang.Throwable
      StackMap stack: java.lang.Throwable
        12: astore 5 /* ex */
        start local 5 // java.lang.Throwable ex
        13: .line 64
            aload 5 /* ex */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        14: .line 65
            new io.reactivex.exceptions.CompositeException
            dup
            iconst_2
            anewarray java.lang.Throwable
            dup
            iconst_0
            aload 4 /* e */
            aastore
            dup
            iconst_1
            aload 5 /* ex */
            aastore
            invokespecial io.reactivex.exceptions.CompositeException.<init>:([Ljava/lang/Throwable;)V
            aload 1 /* s */
            invokestatic io.reactivex.internal.subscriptions.EmptySubscription.error:(Ljava/lang/Throwable;Lorg/reactivestreams/Subscriber;)V
        15: .line 66
            return
        end local 5 // java.lang.Throwable ex
        16: .line 68
      StackMap locals:
      StackMap stack:
            aload 4 /* e */
            aload 1 /* s */
            invokestatic io.reactivex.internal.subscriptions.EmptySubscription.error:(Ljava/lang/Throwable;Lorg/reactivestreams/Subscriber;)V
        17: .line 69
            return
        end local 4 // java.lang.Throwable e
        start local 3 // org.reactivestreams.Publisher source
        18: .line 72
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableUsing org.reactivestreams.Subscriber java.lang.Object org.reactivestreams.Publisher
      StackMap stack:
            new io.reactivex.internal.operators.flowable.FlowableUsing$UsingSubscriber
            dup
            aload 1 /* s */
            aload 2 /* resource */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableUsing.disposer:Lio/reactivex/functions/Consumer;
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableUsing.eager:Z
            invokespecial io.reactivex.internal.operators.flowable.FlowableUsing$UsingSubscriber.<init>:(Lorg/reactivestreams/Subscriber;Ljava/lang/Object;Lio/reactivex/functions/Consumer;Z)V
            astore 4 /* us */
        start local 4 // io.reactivex.internal.operators.flowable.FlowableUsing$UsingSubscriber us
        19: .line 74
            aload 3 /* source */
            aload 4 /* us */
            invokeinterface org.reactivestreams.Publisher.subscribe:(Lorg/reactivestreams/Subscriber;)V
        20: .line 75
            return
        end local 4 // io.reactivex.internal.operators.flowable.FlowableUsing$UsingSubscriber us
        end local 3 // org.reactivestreams.Publisher source
        end local 2 // java.lang.Object resource
        end local 1 // org.reactivestreams.Subscriber s
        end local 0 // io.reactivex.internal.operators.flowable.FlowableUsing this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   21     0      this  Lio/reactivex/internal/operators/flowable/FlowableUsing<TT;TD;>;
            0   21     1         s  Lorg/reactivestreams/Subscriber<-TT;>;
            1    2     2  resource  TD;
            6   21     2  resource  TD;
            3    6     3         e  Ljava/lang/Throwable;
            7    8     3    source  Lorg/reactivestreams/Publisher<+TT;>;
           18   21     3    source  Lorg/reactivestreams/Publisher<+TT;>;
            9   18     4         e  Ljava/lang/Throwable;
           13   16     5        ex  Ljava/lang/Throwable;
           19   21     4        us  Lio/reactivex/internal/operators/flowable/FlowableUsing$UsingSubscriber<TT;TD;>;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.Throwable
           6     7       8  Class java.lang.Throwable
          10    11      12  Class java.lang.Throwable
    Signature: (Lorg/reactivestreams/Subscriber<-TT;>;)V
    MethodParameters:
      Name  Flags
      s     
}
Signature: <T:Ljava/lang/Object;D:Ljava/lang/Object;>Lio/reactivex/Flowable<TT;>;
SourceFile: "FlowableUsing.java"
NestMembers:
  io.reactivex.internal.operators.flowable.FlowableUsing$UsingSubscriber
InnerClasses:
  final UsingSubscriber = io.reactivex.internal.operators.flowable.FlowableUsing$UsingSubscriber of io.reactivex.internal.operators.flowable.FlowableUsing