public class io.vertx.reactivex.impl.WriteStreamSubscriberImpl<R, T> implements io.vertx.reactivex.WriteStreamSubscriber<R>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.reactivex.impl.WriteStreamSubscriberImpl
  super_class: java.lang.Object
{
  private static final int BATCH_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 16

  private final io.vertx.core.streams.WriteStream<T> writeStream;
    descriptor: Lio/vertx/core/streams/WriteStream;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lio/vertx/core/streams/WriteStream<TT;>;

  private final java.util.function.Function<R, T> mapping;
    descriptor: Ljava/util/function/Function;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/function/Function<TR;TT;>;

  private org.reactivestreams.Subscription subscription;
    descriptor: Lorg/reactivestreams/Subscription;
    flags: (0x0002) ACC_PRIVATE

  private int outstanding;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private boolean done;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private io.reactivex.functions.Consumer<? super java.lang.Throwable> flowableErrorHandler;
    descriptor: Lio/reactivex/functions/Consumer;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/reactivex/functions/Consumer<-Ljava/lang/Throwable;>;

  private io.reactivex.functions.Action flowableCompleteHandler;
    descriptor: Lio/reactivex/functions/Action;
    flags: (0x0002) ACC_PRIVATE

  private io.reactivex.functions.Consumer<? super java.lang.Throwable> writeStreamExceptionHandler;
    descriptor: Lio/reactivex/functions/Consumer;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/reactivex/functions/Consumer<-Ljava/lang/Throwable;>;

  public void <init>(io.vertx.core.streams.WriteStream<T>, java.util.function.Function<R, T>);
    descriptor: (Lio/vertx/core/streams/WriteStream;Ljava/util/function/Function;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
        start local 1 // io.vertx.core.streams.WriteStream writeStream
        start local 2 // java.util.function.Function mapping
         0: .line 50
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 51
            aload 1 /* writeStream */
            ldc "writeStream"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         2: .line 52
            aload 2 /* mapping */
            ldc "mapping"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         3: .line 53
            aload 0 /* this */
            aload 1 /* writeStream */
            putfield io.vertx.reactivex.impl.WriteStreamSubscriberImpl.writeStream:Lio/vertx/core/streams/WriteStream;
         4: .line 54
            aload 0 /* this */
            aload 2 /* mapping */
            putfield io.vertx.reactivex.impl.WriteStreamSubscriberImpl.mapping:Ljava/util/function/Function;
         5: .line 55
            return
        end local 2 // java.util.function.Function mapping
        end local 1 // io.vertx.core.streams.WriteStream writeStream
        end local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lio/vertx/reactivex/impl/WriteStreamSubscriberImpl<TR;TT;>;
            0    6     1  writeStream  Lio/vertx/core/streams/WriteStream<TT;>;
            0    6     2      mapping  Ljava/util/function/Function<TR;TT;>;
    Signature: (Lio/vertx/core/streams/WriteStream<TT;>;Ljava/util/function/Function<TR;TT;>;)V
    MethodParameters:
             Name  Flags
      writeStream  
      mapping      

  public void onSubscribe(org.reactivestreams.Subscription);
    descriptor: (Lorg/reactivestreams/Subscription;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
        start local 1 // org.reactivestreams.Subscription subscription
         0: .line 59
            aload 1 /* subscription */
            ldc "subscription"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 60
            aload 0 /* this */
            aload 1 /* subscription */
            invokevirtual io.vertx.reactivex.impl.WriteStreamSubscriberImpl.setSubscription:(Lorg/reactivestreams/Subscription;)Z
            ifne 5
         2: .line 61
            aload 1 /* subscription */
            invokeinterface org.reactivestreams.Subscription.cancel:()V
         3: .line 62
            invokestatic io.reactivex.internal.subscriptions.SubscriptionHelper.reportSubscriptionSet:()V
         4: .line 63
            return
         5: .line 65
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.reactivex.impl.WriteStreamSubscriberImpl.writeStream:Lio/vertx/core/streams/WriteStream;
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/reactivex/impl/WriteStreamSubscriberImpl;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/reactivex/impl/WriteStreamSubscriberImpl.lambda$0(Ljava/lang/Throwable;)V (7)
                  (Ljava/lang/Throwable;)V
            invokeinterface io.vertx.core.streams.WriteStream.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/WriteStream;
            pop
         6: .line 83
            aload 0 /* this */
            getfield io.vertx.reactivex.impl.WriteStreamSubscriberImpl.writeStream:Lio/vertx/core/streams/WriteStream;
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/reactivex/impl/WriteStreamSubscriberImpl;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/reactivex/impl/WriteStreamSubscriberImpl.lambda$1(Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.streams.WriteStream.drainHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/WriteStream;
            pop
         7: .line 84
            aload 0 /* this */
            invokevirtual io.vertx.reactivex.impl.WriteStreamSubscriberImpl.requestMore:()V
         8: .line 85
            return
        end local 1 // org.reactivestreams.Subscription subscription
        end local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    9     0          this  Lio/vertx/reactivex/impl/WriteStreamSubscriberImpl<TR;TT;>;
            0    9     1  subscription  Lorg/reactivestreams/Subscription;
    MethodParameters:
              Name  Flags
      subscription  

  public void onNext();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
        start local 1 // java.lang.Object r
         0: .line 89
            aload 0 /* this */
            invokevirtual io.vertx.reactivex.impl.WriteStreamSubscriberImpl.isDone:()Z
            ifeq 2
         1: .line 90
            return
         2: .line 93
      StackMap locals:
      StackMap stack:
            aload 1 /* r */
            ifnonnull 11
         3: .line 94
            new java.lang.NullPointerException
            dup
            ldc "onNext called with null"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            astore 2 /* throwable */
        start local 2 // java.lang.Throwable throwable
         4: .line 96
            aload 0 /* this */
            invokevirtual io.vertx.reactivex.impl.WriteStreamSubscriberImpl.getSubscription:()Lorg/reactivestreams/Subscription;
            invokeinterface org.reactivestreams.Subscription.cancel:()V
         5: .line 97
            goto 9
      StackMap locals: io.vertx.reactivex.impl.WriteStreamSubscriberImpl java.lang.Object java.lang.Throwable
      StackMap stack: java.lang.Throwable
         6: astore 3 /* t */
        start local 3 // java.lang.Throwable t
         7: .line 98
            aload 3 /* t */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         8: .line 99
            new io.reactivex.exceptions.CompositeException
            dup
            iconst_2
            anewarray java.lang.Throwable
            dup
            iconst_0
            aload 2 /* throwable */
            aastore
            dup
            iconst_1
            aload 3 /* t */
            aastore
            invokespecial io.reactivex.exceptions.CompositeException.<init>:([Ljava/lang/Throwable;)V
            astore 2 /* throwable */
        end local 3 // java.lang.Throwable t
         9: .line 101
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* throwable */
            invokevirtual io.vertx.reactivex.impl.WriteStreamSubscriberImpl.onError:(Ljava/lang/Throwable;)V
        10: .line 102
            return
        end local 2 // java.lang.Throwable throwable
        11: .line 106
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.reactivex.impl.WriteStreamSubscriberImpl.writeStream:Lio/vertx/core/streams/WriteStream;
            aload 0 /* this */
            getfield io.vertx.reactivex.impl.WriteStreamSubscriberImpl.mapping:Ljava/util/function/Function;
            aload 1 /* r */
            invokeinterface java.util.function.Function.apply:(Ljava/lang/Object;)Ljava/lang/Object;
            invokeinterface io.vertx.core.streams.WriteStream.write:(Ljava/lang/Object;)Lio/vertx/core/streams/WriteStream;
            pop
        12: .line 107
            aload 0 /* this */
            dup
            astore 2
            monitorenter
        13: .line 108
            aload 0 /* this */
            dup
            getfield io.vertx.reactivex.impl.WriteStreamSubscriberImpl.outstanding:I
            iconst_1
            isub
            putfield io.vertx.reactivex.impl.WriteStreamSubscriberImpl.outstanding:I
        14: .line 107
            aload 2
            monitorexit
        15: goto 28
      StackMap locals: io.vertx.reactivex.impl.WriteStreamSubscriberImpl java.lang.Object io.vertx.reactivex.impl.WriteStreamSubscriberImpl
      StackMap stack: java.lang.Throwable
        16: aload 2
            monitorexit
        17: athrow
        18: .line 110
      StackMap locals: io.vertx.reactivex.impl.WriteStreamSubscriberImpl java.lang.Object
      StackMap stack: java.lang.Throwable
            astore 2 /* t */
        start local 2 // java.lang.Throwable t
        19: .line 111
            aload 2 /* t */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        20: .line 114
            aload 0 /* this */
            invokevirtual io.vertx.reactivex.impl.WriteStreamSubscriberImpl.getSubscription:()Lorg/reactivestreams/Subscription;
            invokeinterface org.reactivestreams.Subscription.cancel:()V
        21: .line 115
            aload 2 /* t */
            astore 3 /* throwable */
        start local 3 // java.lang.Throwable throwable
        22: .line 116
            goto 26
        end local 3 // java.lang.Throwable throwable
      StackMap locals: io.vertx.reactivex.impl.WriteStreamSubscriberImpl java.lang.Object java.lang.Throwable
      StackMap stack: java.lang.Throwable
        23: astore 4 /* t1 */
        start local 4 // java.lang.Throwable t1
        24: .line 117
            aload 4 /* t1 */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        25: .line 118
            new io.reactivex.exceptions.CompositeException
            dup
            iconst_2
            anewarray java.lang.Throwable
            dup
            iconst_0
            aload 2 /* t */
            aastore
            dup
            iconst_1
            aload 4 /* t1 */
            aastore
            invokespecial io.reactivex.exceptions.CompositeException.<init>:([Ljava/lang/Throwable;)V
            astore 3 /* throwable */
        end local 4 // java.lang.Throwable t1
        start local 3 // java.lang.Throwable throwable
        26: .line 120
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 0 /* this */
            aload 3 /* throwable */
            invokevirtual io.vertx.reactivex.impl.WriteStreamSubscriberImpl.onError:(Ljava/lang/Throwable;)V
        27: .line 121
            return
        end local 3 // java.lang.Throwable throwable
        end local 2 // java.lang.Throwable t
        28: .line 124
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.reactivex.impl.WriteStreamSubscriberImpl.writeStream:Lio/vertx/core/streams/WriteStream;
            invokeinterface io.vertx.core.streams.WriteStream.writeQueueFull:()Z
            ifne 30
        29: .line 125
            aload 0 /* this */
            invokevirtual io.vertx.reactivex.impl.WriteStreamSubscriberImpl.requestMore:()V
        30: .line 127
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Object r
        end local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   31     0       this  Lio/vertx/reactivex/impl/WriteStreamSubscriberImpl<TR;TT;>;
            0   31     1          r  TR;
            4   11     2  throwable  Ljava/lang/Throwable;
            7    9     3          t  Ljava/lang/Throwable;
           19   28     2          t  Ljava/lang/Throwable;
           22   23     3  throwable  Ljava/lang/Throwable;
           26   28     3  throwable  Ljava/lang/Throwable;
           24   26     4         t1  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           4     5       6  Class java.lang.Throwable
          13    15      16  any
          16    17      16  any
          11    18      18  Class java.lang.Throwable
          20    22      23  Class java.lang.Throwable
    Signature: (TR;)V
    MethodParameters:
      Name  Flags
      r     

  public void onError(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
        start local 1 // java.lang.Throwable t
         0: .line 131
            aload 0 /* this */
            invokevirtual io.vertx.reactivex.impl.WriteStreamSubscriberImpl.setDone:()Z
            ifne 3
         1: .line 132
            aload 1 /* t */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
         2: .line 133
            return
         3: .line 136
      StackMap locals:
      StackMap stack:
            aload 1 /* t */
            ldc "onError called with null"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         4: .line 139
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         5: .line 140
            aload 0 /* this */
            getfield io.vertx.reactivex.impl.WriteStreamSubscriberImpl.flowableErrorHandler:Lio/reactivex/functions/Consumer;
            astore 2 /* c */
        start local 2 // io.reactivex.functions.Consumer c
         6: .line 139
            aload 3
            monitorexit
         7: goto 10
        end local 2 // io.reactivex.functions.Consumer c
      StackMap locals: io.vertx.reactivex.impl.WriteStreamSubscriberImpl java.lang.Throwable top io.vertx.reactivex.impl.WriteStreamSubscriberImpl
      StackMap stack: java.lang.Throwable
         8: aload 3
            monitorexit
         9: athrow
        start local 2 // io.reactivex.functions.Consumer c
        10: .line 143
      StackMap locals: io.vertx.reactivex.impl.WriteStreamSubscriberImpl java.lang.Throwable io.reactivex.functions.Consumer
      StackMap stack:
            aload 2 /* c */
            ifnull 16
        11: .line 144
            aload 2 /* c */
            aload 1 /* t */
            invokeinterface io.reactivex.functions.Consumer.accept:(Ljava/lang/Object;)V
        12: .line 146
            goto 16
      StackMap locals:
      StackMap stack: java.lang.Throwable
        13: astore 3 /* t1 */
        start local 3 // java.lang.Throwable t1
        14: .line 147
            aload 3 /* t1 */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        15: .line 148
            aload 3 /* t1 */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
        end local 3 // java.lang.Throwable t1
        16: .line 150
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.reactivex.functions.Consumer c
        end local 1 // java.lang.Throwable t
        end local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Lio/vertx/reactivex/impl/WriteStreamSubscriberImpl<TR;TT;>;
            0   17     1     t  Ljava/lang/Throwable;
            6    8     2     c  Lio/reactivex/functions/Consumer<-Ljava/lang/Throwable;>;
           10   17     2     c  Lio/reactivex/functions/Consumer<-Ljava/lang/Throwable;>;
           14   16     3    t1  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           5     7       8  any
           8     9       8  any
          10    12      13  Class java.lang.Throwable
    MethodParameters:
      Name  Flags
      t     

  public void onComplete();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
         0: .line 154
            aload 0 /* this */
            invokevirtual io.vertx.reactivex.impl.WriteStreamSubscriberImpl.setDone:()Z
            ifne 2
         1: .line 155
            return
         2: .line 159
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         3: .line 160
            aload 0 /* this */
            getfield io.vertx.reactivex.impl.WriteStreamSubscriberImpl.flowableCompleteHandler:Lio/reactivex/functions/Action;
            astore 1 /* a */
        start local 1 // io.reactivex.functions.Action a
         4: .line 159
            aload 2
            monitorexit
         5: goto 8
        end local 1 // io.reactivex.functions.Action a
      StackMap locals: io.vertx.reactivex.impl.WriteStreamSubscriberImpl top io.vertx.reactivex.impl.WriteStreamSubscriberImpl
      StackMap stack: java.lang.Throwable
         6: aload 2
            monitorexit
         7: athrow
        start local 1 // io.reactivex.functions.Action a
         8: .line 163
      StackMap locals: io.vertx.reactivex.impl.WriteStreamSubscriberImpl io.reactivex.functions.Action
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.reactivex.impl.WriteStreamSubscriberImpl.writeStream:Lio/vertx/core/streams/WriteStream;
            invokeinterface io.vertx.core.streams.WriteStream.end:()V
         9: .line 164
            aload 1 /* a */
            ifnull 15
        10: .line 165
            aload 1 /* a */
            invokeinterface io.reactivex.functions.Action.run:()V
        11: .line 167
            goto 15
      StackMap locals:
      StackMap stack: java.lang.Throwable
        12: astore 2 /* t */
        start local 2 // java.lang.Throwable t
        13: .line 168
            aload 2 /* t */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        14: .line 169
            aload 2 /* t */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
        end local 2 // java.lang.Throwable t
        15: .line 171
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.reactivex.functions.Action a
        end local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   16     0  this  Lio/vertx/reactivex/impl/WriteStreamSubscriberImpl<TR;TT;>;
            4    6     1     a  Lio/reactivex/functions/Action;
            8   16     1     a  Lio/reactivex/functions/Action;
           13   15     2     t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           3     5       6  any
           6     7       6  any
           8    11      12  Class java.lang.Throwable

  private synchronized org.reactivestreams.Subscription getSubscription();
    descriptor: ()Lorg/reactivestreams/Subscription;
    flags: (0x0022) ACC_PRIVATE, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
         0: .line 174
            aload 0 /* this */
            getfield io.vertx.reactivex.impl.WriteStreamSubscriberImpl.subscription:Lorg/reactivestreams/Subscription;
            areturn
        end local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/reactivex/impl/WriteStreamSubscriberImpl<TR;TT;>;

  private synchronized boolean setSubscription(org.reactivestreams.Subscription);
    descriptor: (Lorg/reactivestreams/Subscription;)Z
    flags: (0x0022) ACC_PRIVATE, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
        start local 1 // org.reactivestreams.Subscription subscription
         0: .line 178
            aload 0 /* this */
            getfield io.vertx.reactivex.impl.WriteStreamSubscriberImpl.subscription:Lorg/reactivestreams/Subscription;
            ifnonnull 3
         1: .line 179
            aload 0 /* this */
            aload 1 /* subscription */
            putfield io.vertx.reactivex.impl.WriteStreamSubscriberImpl.subscription:Lorg/reactivestreams/Subscription;
         2: .line 180
            iconst_1
            ireturn
         3: .line 182
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // org.reactivestreams.Subscription subscription
        end local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    4     0          this  Lio/vertx/reactivex/impl/WriteStreamSubscriberImpl<TR;TT;>;
            0    4     1  subscription  Lorg/reactivestreams/Subscription;
    MethodParameters:
              Name  Flags
      subscription  

  private synchronized boolean isDone();
    descriptor: ()Z
    flags: (0x0022) ACC_PRIVATE, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
         0: .line 186
            aload 0 /* this */
            getfield io.vertx.reactivex.impl.WriteStreamSubscriberImpl.done:Z
            ireturn
        end local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/reactivex/impl/WriteStreamSubscriberImpl<TR;TT;>;

  private synchronized boolean setDone();
    descriptor: ()Z
    flags: (0x0022) ACC_PRIVATE, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
         0: .line 190
            aload 0 /* this */
            getfield io.vertx.reactivex.impl.WriteStreamSubscriberImpl.done:Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            iconst_1
            dup_x1
            putfield io.vertx.reactivex.impl.WriteStreamSubscriberImpl.done:Z
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/reactivex/impl/WriteStreamSubscriberImpl<TR;TT;>;

  private void requestMore();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
         0: .line 194
            aload 0 /* this */
            invokevirtual io.vertx.reactivex.impl.WriteStreamSubscriberImpl.getSubscription:()Lorg/reactivestreams/Subscription;
            astore 1 /* s */
        start local 1 // org.reactivestreams.Subscription s
         1: .line 195
            aload 1 /* s */
            ifnonnull 3
         2: .line 196
            return
         3: .line 198
      StackMap locals: org.reactivestreams.Subscription
      StackMap stack:
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         4: .line 199
            aload 0 /* this */
            getfield io.vertx.reactivex.impl.WriteStreamSubscriberImpl.done:Z
            ifne 5
            aload 0 /* this */
            getfield io.vertx.reactivex.impl.WriteStreamSubscriberImpl.outstanding:I
            ifle 7
         5: .line 200
      StackMap locals: io.vertx.reactivex.impl.WriteStreamSubscriberImpl
      StackMap stack:
            aload 2
            monitorexit
         6: return
         7: .line 202
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 16
            putfield io.vertx.reactivex.impl.WriteStreamSubscriberImpl.outstanding:I
         8: .line 198
            aload 2
            monitorexit
         9: goto 12
      StackMap locals:
      StackMap stack: java.lang.Throwable
        10: aload 2
            monitorexit
        11: athrow
        12: .line 204
      StackMap locals:
      StackMap stack:
            aload 1 /* s */
            ldc 16
            invokeinterface org.reactivestreams.Subscription.request:(J)V
        13: .line 205
            return
        end local 1 // org.reactivestreams.Subscription s
        end local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lio/vertx/reactivex/impl/WriteStreamSubscriberImpl<TR;TT;>;
            1   14     1     s  Lorg/reactivestreams/Subscription;
      Exception table:
        from    to  target  type
           4     6      10  any
           7     9      10  any
          10    11      10  any

  public synchronized io.vertx.reactivex.WriteStreamSubscriber<R> onError(io.reactivex.functions.Consumer<? super java.lang.Throwable>);
    descriptor: (Lio/reactivex/functions/Consumer;)Lio/vertx/reactivex/WriteStreamSubscriber;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
        start local 1 // io.reactivex.functions.Consumer handler
         0: .line 209
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.reactivex.impl.WriteStreamSubscriberImpl.flowableErrorHandler:Lio/reactivex/functions/Consumer;
         1: .line 210
            aload 0 /* this */
            areturn
        end local 1 // io.reactivex.functions.Consumer handler
        end local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/reactivex/impl/WriteStreamSubscriberImpl<TR;TT;>;
            0    2     1  handler  Lio/reactivex/functions/Consumer<-Ljava/lang/Throwable;>;
    Signature: (Lio/reactivex/functions/Consumer<-Ljava/lang/Throwable;>;)Lio/vertx/reactivex/WriteStreamSubscriber<TR;>;
    MethodParameters:
         Name  Flags
      handler  

  public synchronized io.vertx.reactivex.WriteStreamSubscriber<R> onComplete(io.reactivex.functions.Action);
    descriptor: (Lio/reactivex/functions/Action;)Lio/vertx/reactivex/WriteStreamSubscriber;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
        start local 1 // io.reactivex.functions.Action handler
         0: .line 215
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.reactivex.impl.WriteStreamSubscriberImpl.flowableCompleteHandler:Lio/reactivex/functions/Action;
         1: .line 216
            aload 0 /* this */
            areturn
        end local 1 // io.reactivex.functions.Action handler
        end local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/reactivex/impl/WriteStreamSubscriberImpl<TR;TT;>;
            0    2     1  handler  Lio/reactivex/functions/Action;
    Signature: (Lio/reactivex/functions/Action;)Lio/vertx/reactivex/WriteStreamSubscriber<TR;>;
    MethodParameters:
         Name  Flags
      handler  

  public synchronized io.vertx.reactivex.WriteStreamSubscriber<R> onWriteStreamError(io.reactivex.functions.Consumer<? super java.lang.Throwable>);
    descriptor: (Lio/reactivex/functions/Consumer;)Lio/vertx/reactivex/WriteStreamSubscriber;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
        start local 1 // io.reactivex.functions.Consumer handler
         0: .line 221
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.reactivex.impl.WriteStreamSubscriberImpl.writeStreamExceptionHandler:Lio/reactivex/functions/Consumer;
         1: .line 222
            aload 0 /* this */
            areturn
        end local 1 // io.reactivex.functions.Consumer handler
        end local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/reactivex/impl/WriteStreamSubscriberImpl<TR;TT;>;
            0    2     1  handler  Lio/reactivex/functions/Consumer<-Ljava/lang/Throwable;>;
    Signature: (Lio/reactivex/functions/Consumer<-Ljava/lang/Throwable;>;)Lio/vertx/reactivex/WriteStreamSubscriber<TR;>;
    MethodParameters:
         Name  Flags
      handler  

  private void lambda$0(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
        start local 1 // java.lang.Throwable t
         0: .line 66
            aload 0 /* this */
            invokevirtual io.vertx.reactivex.impl.WriteStreamSubscriberImpl.setDone:()Z
            ifne 3
         1: .line 67
            aload 1 /* t */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
         2: .line 68
            return
         3: .line 70
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.reactivex.impl.WriteStreamSubscriberImpl.getSubscription:()Lorg/reactivestreams/Subscription;
            invokeinterface org.reactivestreams.Subscription.cancel:()V
         4: .line 72
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         5: .line 73
            aload 0 /* this */
            getfield io.vertx.reactivex.impl.WriteStreamSubscriberImpl.writeStreamExceptionHandler:Lio/reactivex/functions/Consumer;
            astore 2 /* c */
        start local 2 // io.reactivex.functions.Consumer c
         6: .line 72
            aload 3
            monitorexit
         7: goto 10
        end local 2 // io.reactivex.functions.Consumer c
      StackMap locals: io.vertx.reactivex.impl.WriteStreamSubscriberImpl java.lang.Throwable top io.vertx.reactivex.impl.WriteStreamSubscriberImpl
      StackMap stack: java.lang.Throwable
         8: aload 3
            monitorexit
         9: athrow
        start local 2 // io.reactivex.functions.Consumer c
        10: .line 75
      StackMap locals: io.vertx.reactivex.impl.WriteStreamSubscriberImpl java.lang.Throwable io.reactivex.functions.Consumer
      StackMap stack:
            aload 2 /* c */
            ifnull 15
        11: .line 77
            aload 2 /* c */
            aload 1 /* t */
            invokeinterface io.reactivex.functions.Consumer.accept:(Ljava/lang/Object;)V
        12: .line 78
            goto 15
      StackMap locals:
      StackMap stack: java.lang.Exception
        13: astore 3 /* e */
        start local 3 // java.lang.Exception e
        14: .line 79
            aload 3 /* e */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
        end local 3 // java.lang.Exception e
        end local 2 // io.reactivex.functions.Consumer c
        15: .line 82
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Throwable t
        end local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   16     0  this  Lio/vertx/reactivex/impl/WriteStreamSubscriberImpl<TR;TT;>;
            0   16     1     t  Ljava/lang/Throwable;
            6    8     2     c  Lio/reactivex/functions/Consumer<-Ljava/lang/Throwable;>;
           10   15     2     c  Lio/reactivex/functions/Consumer<-Ljava/lang/Throwable;>;
           14   15     3     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           5     7       8  any
           8     9       8  any
          11    12      13  Class java.lang.Exception

  private void lambda$1(java.lang.Void);
    descriptor: (Ljava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
        start local 1 // java.lang.Void v
         0: .line 83
            aload 0 /* this */
            invokevirtual io.vertx.reactivex.impl.WriteStreamSubscriberImpl.requestMore:()V
            return
        end local 1 // java.lang.Void v
        end local 0 // io.vertx.reactivex.impl.WriteStreamSubscriberImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/reactivex/impl/WriteStreamSubscriberImpl<TR;TT;>;
            0    1     1     v  Ljava/lang/Void;
}
Signature: <R:Ljava/lang/Object;T:Ljava/lang/Object;>Ljava/lang/Object;Lio/vertx/reactivex/WriteStreamSubscriber<TR;>;
SourceFile: "WriteStreamSubscriberImpl.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles