class io.vertx.rxjava.core.streams.WriteStreamImpl<T> implements io.vertx.rxjava.core.streams.WriteStream<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.vertx.rxjava.core.streams.WriteStreamImpl
  super_class: java.lang.Object
{
  private final io.vertx.core.streams.WriteStream<T> delegate;
    descriptor: Lio/vertx/core/streams/WriteStream;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lio/vertx/core/streams/WriteStream<TT;>;

  public final io.vertx.lang.rx.TypeArg<T> __typeArg_0;
    descriptor: Lio/vertx/lang/rx/TypeArg;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Signature: Lio/vertx/lang/rx/TypeArg<TT;>;

  private io.vertx.rx.java.WriteStreamSubscriber<T> subscriber;
    descriptor: Lio/vertx/rx/java/WriteStreamSubscriber;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/rx/java/WriteStreamSubscriber<TT;>;

  public void <init>(io.vertx.core.streams.WriteStream);
    descriptor: (Lio/vertx/core/streams/WriteStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
        start local 1 // io.vertx.core.streams.WriteStream delegate
         0: .line 161
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 162
            aload 0 /* this */
            aload 1 /* delegate */
            putfield io.vertx.rxjava.core.streams.WriteStreamImpl.delegate:Lio/vertx/core/streams/WriteStream;
         2: .line 163
            aload 0 /* this */
            invokestatic io.vertx.lang.rx.TypeArg.unknown:()Lio/vertx/lang/rx/TypeArg;
            putfield io.vertx.rxjava.core.streams.WriteStreamImpl.__typeArg_0:Lio/vertx/lang/rx/TypeArg;
            return
        end local 1 // io.vertx.core.streams.WriteStream delegate
        end local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lio/vertx/rxjava/core/streams/WriteStreamImpl<TT;>;
            0    3     1  delegate  Lio/vertx/core/streams/WriteStream;
    MethodParameters:
          Name  Flags
      delegate  

  public void <init>(, io.vertx.lang.rx.TypeArg<T>);
    descriptor: (Ljava/lang/Object;Lio/vertx/lang/rx/TypeArg;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
        start local 1 // java.lang.Object delegate
        start local 2 // io.vertx.lang.rx.TypeArg typeArg_0
         0: .line 165
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 166
            aload 0 /* this */
            aload 1 /* delegate */
            checkcast io.vertx.core.streams.WriteStream
            putfield io.vertx.rxjava.core.streams.WriteStreamImpl.delegate:Lio/vertx/core/streams/WriteStream;
         2: .line 167
            aload 0 /* this */
            aload 2 /* typeArg_0 */
            putfield io.vertx.rxjava.core.streams.WriteStreamImpl.__typeArg_0:Lio/vertx/lang/rx/TypeArg;
         3: .line 168
            return
        end local 2 // io.vertx.lang.rx.TypeArg typeArg_0
        end local 1 // java.lang.Object delegate
        end local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lio/vertx/rxjava/core/streams/WriteStreamImpl<TT;>;
            0    4     1   delegate  Ljava/lang/Object;
            0    4     2  typeArg_0  Lio/vertx/lang/rx/TypeArg<TT;>;
    Signature: (Ljava/lang/Object;Lio/vertx/lang/rx/TypeArg<TT;>;)V
    MethodParameters:
           Name  Flags
      delegate   
      typeArg_0  

  public io.vertx.core.streams.WriteStream getDelegate();
    descriptor: ()Lio/vertx/core/streams/WriteStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
         0: .line 171
            aload 0 /* this */
            getfield io.vertx.rxjava.core.streams.WriteStreamImpl.delegate:Lio/vertx/core/streams/WriteStream;
            areturn
        end local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/rxjava/core/streams/WriteStreamImpl<TT;>;

  public synchronized io.vertx.rx.java.WriteStreamSubscriber<T> toSubscriber();
    descriptor: ()Lio/vertx/rx/java/WriteStreamSubscriber;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
         0: .line 177
            aload 0 /* this */
            getfield io.vertx.rxjava.core.streams.WriteStreamImpl.subscriber:Lio/vertx/rx/java/WriteStreamSubscriber;
            ifnonnull 3
         1: .line 178
            aload 0 /* this */
            getfield io.vertx.rxjava.core.streams.WriteStreamImpl.__typeArg_0:Lio/vertx/lang/rx/TypeArg;
            getfield io.vertx.lang.rx.TypeArg.unwrap:Ljava/util/function/Function;
            astore 1 /* conv */
        start local 1 // java.util.function.Function conv
         2: .line 179
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual io.vertx.rxjava.core.streams.WriteStreamImpl.getDelegate:()Lio/vertx/core/streams/WriteStream;
            aload 1 /* conv */
            invokestatic io.vertx.rx.java.RxHelper.toSubscriber:(Lio/vertx/core/streams/WriteStream;Ljava/util/function/Function;)Lio/vertx/rx/java/WriteStreamSubscriber;
            putfield io.vertx.rxjava.core.streams.WriteStreamImpl.subscriber:Lio/vertx/rx/java/WriteStreamSubscriber;
        end local 1 // java.util.function.Function conv
         3: .line 181
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.rxjava.core.streams.WriteStreamImpl.subscriber:Lio/vertx/rx/java/WriteStreamSubscriber;
            areturn
        end local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/rxjava/core/streams/WriteStreamImpl<TT;>;
            2    3     1  conv  Ljava/util/function/Function<TT;TT;>;
    Signature: ()Lio/vertx/rx/java/WriteStreamSubscriber<TT;>;

  public io.vertx.rxjava.core.streams.WriteStream<T> exceptionHandler(io.vertx.core.Handler<java.lang.Throwable>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/rxjava/core/streams/WriteStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 191
            aload 0 /* this */
            getfield io.vertx.rxjava.core.streams.WriteStreamImpl.delegate:Lio/vertx/core/streams/WriteStream;
            aload 1 /* handler */
            invokeinterface io.vertx.core.streams.WriteStream.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/WriteStream;
            pop
         1: .line 192
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/rxjava/core/streams/WriteStreamImpl<TT;>;
            0    2     1  handler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Throwable;>;)Lio/vertx/rxjava/core/streams/WriteStream<TT;>;
    MethodParameters:
         Name  Flags
      handler  

  public void write(T, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Ljava/lang/Object;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
        start local 1 // java.lang.Object data
        start local 2 // io.vertx.core.Handler handler
         0: .line 201
            aload 0 /* this */
            getfield io.vertx.rxjava.core.streams.WriteStreamImpl.delegate:Lio/vertx/core/streams/WriteStream;
            aload 0 /* this */
            getfield io.vertx.rxjava.core.streams.WriteStreamImpl.__typeArg_0:Lio/vertx/lang/rx/TypeArg;
            aload 1 /* data */
            invokevirtual io.vertx.lang.rx.TypeArg.unwrap:(Ljava/lang/Object;)Ljava/lang/Object;
            aload 2 /* handler */
            invokeinterface io.vertx.core.streams.WriteStream.write:(Ljava/lang/Object;Lio/vertx/core/Handler;)V
         1: .line 202
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.Object data
        end local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/rxjava/core/streams/WriteStreamImpl<TT;>;
            0    2     1     data  TT;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (TT;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
         Name  Flags
      data     
      handler  

  public void write();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
        start local 1 // java.lang.Object data
         0: .line 209
            aload 0 /* this */
            aload 1 /* data */
            invokedynamic handle()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/rxjava/core/streams/WriteStreamImpl.lambda$0(Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.rxjava.core.streams.WriteStreamImpl.write:(Ljava/lang/Object;Lio/vertx/core/Handler;)V
         1: .line 210
            return
        end local 1 // java.lang.Object data
        end local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/rxjava/core/streams/WriteStreamImpl<TT;>;
            0    2     1  data  TT;
    Signature: (TT;)V
    MethodParameters:
      Name  Flags
      data  

  public rx.Single<java.lang.Void> rxWrite(T);
    descriptor: (Ljava/lang/Object;)Lrx/Single;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
        start local 1 // java.lang.Object data
         0: .line 218
            new io.vertx.rx.java.SingleOnSubscribeAdapter
            dup
            aload 0 /* this */
            aload 1 /* data */
            invokedynamic accept(Lio/vertx/rxjava/core/streams/WriteStreamImpl;Ljava/lang/Object;)Ljava/util/function/Consumer;
              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/rxjava/core/streams/WriteStreamImpl.lambda$1(Ljava/lang/Object;Lio/vertx/core/Handler;)V (7)
                  (Lio/vertx/core/Handler;)V
            invokespecial io.vertx.rx.java.SingleOnSubscribeAdapter.<init>:(Ljava/util/function/Consumer;)V
            invokestatic rx.Single.create:(Lrx/Single$OnSubscribe;)Lrx/Single;
            areturn
        end local 1 // java.lang.Object data
        end local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/rxjava/core/streams/WriteStreamImpl<TT;>;
            0    1     1  data  TT;
    Signature: (TT;)Lrx/Single<Ljava/lang/Void;>;
    MethodParameters:
      Name  Flags
      data  

  public void end(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 228
            aload 0 /* this */
            getfield io.vertx.rxjava.core.streams.WriteStreamImpl.delegate:Lio/vertx/core/streams/WriteStream;
            aload 1 /* handler */
            invokeinterface io.vertx.core.streams.WriteStream.end:(Lio/vertx/core/Handler;)V
         1: .line 229
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/rxjava/core/streams/WriteStreamImpl<TT;>;
            0    2     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
         Name  Flags
      handler  

  public void end();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
         0: .line 235
            aload 0 /* this */
            invokedynamic handle()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/rxjava/core/streams/WriteStreamImpl.lambda$2(Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.rxjava.core.streams.WriteStreamImpl.end:(Lio/vertx/core/Handler;)V
         1: .line 236
            return
        end local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/rxjava/core/streams/WriteStreamImpl<TT;>;

  public rx.Single<java.lang.Void> rxEnd();
    descriptor: ()Lrx/Single;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
         0: .line 243
            new io.vertx.rx.java.SingleOnSubscribeAdapter
            dup
            aload 0 /* this */
            invokedynamic accept(Lio/vertx/rxjava/core/streams/WriteStreamImpl;)Ljava/util/function/Consumer;
              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/rxjava/core/streams/WriteStreamImpl.lambda$3(Lio/vertx/core/Handler;)V (7)
                  (Lio/vertx/core/Handler;)V
            invokespecial io.vertx.rx.java.SingleOnSubscribeAdapter.<init>:(Ljava/util/function/Consumer;)V
            invokestatic rx.Single.create:(Lrx/Single$OnSubscribe;)Lrx/Single;
            areturn
        end local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/rxjava/core/streams/WriteStreamImpl<TT;>;
    Signature: ()Lrx/Single<Ljava/lang/Void;>;

  public void end(T, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Ljava/lang/Object;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
        start local 1 // java.lang.Object data
        start local 2 // io.vertx.core.Handler handler
         0: .line 254
            aload 0 /* this */
            getfield io.vertx.rxjava.core.streams.WriteStreamImpl.delegate:Lio/vertx/core/streams/WriteStream;
            aload 0 /* this */
            getfield io.vertx.rxjava.core.streams.WriteStreamImpl.__typeArg_0:Lio/vertx/lang/rx/TypeArg;
            aload 1 /* data */
            invokevirtual io.vertx.lang.rx.TypeArg.unwrap:(Ljava/lang/Object;)Ljava/lang/Object;
            aload 2 /* handler */
            invokeinterface io.vertx.core.streams.WriteStream.end:(Ljava/lang/Object;Lio/vertx/core/Handler;)V
         1: .line 255
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.Object data
        end local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/rxjava/core/streams/WriteStreamImpl<TT;>;
            0    2     1     data  TT;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (TT;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
         Name  Flags
      data     
      handler  

  public void end();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
        start local 1 // java.lang.Object data
         0: .line 262
            aload 0 /* this */
            aload 1 /* data */
            invokedynamic handle()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/rxjava/core/streams/WriteStreamImpl.lambda$4(Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.rxjava.core.streams.WriteStreamImpl.end:(Ljava/lang/Object;Lio/vertx/core/Handler;)V
         1: .line 263
            return
        end local 1 // java.lang.Object data
        end local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/rxjava/core/streams/WriteStreamImpl<TT;>;
            0    2     1  data  TT;
    Signature: (TT;)V
    MethodParameters:
      Name  Flags
      data  

  public rx.Single<java.lang.Void> rxEnd(T);
    descriptor: (Ljava/lang/Object;)Lrx/Single;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
        start local 1 // java.lang.Object data
         0: .line 271
            new io.vertx.rx.java.SingleOnSubscribeAdapter
            dup
            aload 0 /* this */
            aload 1 /* data */
            invokedynamic accept(Lio/vertx/rxjava/core/streams/WriteStreamImpl;Ljava/lang/Object;)Ljava/util/function/Consumer;
              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/rxjava/core/streams/WriteStreamImpl.lambda$5(Ljava/lang/Object;Lio/vertx/core/Handler;)V (7)
                  (Lio/vertx/core/Handler;)V
            invokespecial io.vertx.rx.java.SingleOnSubscribeAdapter.<init>:(Ljava/util/function/Consumer;)V
            invokestatic rx.Single.create:(Lrx/Single$OnSubscribe;)Lrx/Single;
            areturn
        end local 1 // java.lang.Object data
        end local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/rxjava/core/streams/WriteStreamImpl<TT;>;
            0    1     1  data  TT;
    Signature: (TT;)Lrx/Single<Ljava/lang/Void;>;
    MethodParameters:
      Name  Flags
      data  

  public io.vertx.rxjava.core.streams.WriteStream<T> setWriteQueueMaxSize(int);
    descriptor: (I)Lio/vertx/rxjava/core/streams/WriteStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
        start local 1 // int maxSize
         0: .line 287
            aload 0 /* this */
            getfield io.vertx.rxjava.core.streams.WriteStreamImpl.delegate:Lio/vertx/core/streams/WriteStream;
            iload 1 /* maxSize */
            invokeinterface io.vertx.core.streams.WriteStream.setWriteQueueMaxSize:(I)Lio/vertx/core/streams/WriteStream;
            pop
         1: .line 288
            aload 0 /* this */
            areturn
        end local 1 // int maxSize
        end local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/rxjava/core/streams/WriteStreamImpl<TT;>;
            0    2     1  maxSize  I
    Signature: (I)Lio/vertx/rxjava/core/streams/WriteStream<TT;>;
    MethodParameters:
         Name  Flags
      maxSize  

  public boolean writeQueueFull();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
         0: .line 296
            aload 0 /* this */
            getfield io.vertx.rxjava.core.streams.WriteStreamImpl.delegate:Lio/vertx/core/streams/WriteStream;
            invokeinterface io.vertx.core.streams.WriteStream.writeQueueFull:()Z
            istore 1 /* ret */
        start local 1 // boolean ret
         1: .line 297
            iload 1 /* ret */
            ireturn
        end local 1 // boolean ret
        end local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/rxjava/core/streams/WriteStreamImpl<TT;>;
            1    2     1   ret  Z

  public io.vertx.rxjava.core.streams.WriteStream<T> drainHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/rxjava/core/streams/WriteStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 310
            aload 0 /* this */
            getfield io.vertx.rxjava.core.streams.WriteStreamImpl.delegate:Lio/vertx/core/streams/WriteStream;
            aload 1 /* handler */
            invokeinterface io.vertx.core.streams.WriteStream.drainHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/WriteStream;
            pop
         1: .line 311
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/rxjava/core/streams/WriteStreamImpl<TT;>;
            0    2     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)Lio/vertx/rxjava/core/streams/WriteStream<TT;>;
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.core.streams.StreamBase getDelegate();
    descriptor: ()Lio/vertx/core/streams/StreamBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.vertx.rxjava.core.streams.WriteStreamImpl.getDelegate:()Lio/vertx/core/streams/WriteStream;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.rxjava.core.streams.StreamBase exceptionHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/rxjava/core/streams/StreamBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.rxjava.core.streams.WriteStreamImpl.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/rxjava/core/streams/WriteStream;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private static void lambda$0(io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.vertx.core.AsyncResult ar
         0: .line 209
            return
        end local 0 // io.vertx.core.AsyncResult ar
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0    ar  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;

  private void lambda$1(java.lang.Object, io.vertx.core.Handler);
    descriptor: (Ljava/lang/Object;Lio/vertx/core/Handler;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
        start local 2 // io.vertx.core.Handler fut
         0: .line 219
            aload 0 /* this */
            aload 1
            aload 2 /* fut */
            invokevirtual io.vertx.rxjava.core.streams.WriteStreamImpl.write:(Ljava/lang/Object;Lio/vertx/core/Handler;)V
         1: .line 220
            return
        end local 2 // io.vertx.core.Handler fut
        end local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/rxjava/core/streams/WriteStreamImpl<TT;>;
            0    2     2   fut  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;

  private static void lambda$2(io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.vertx.core.AsyncResult ar
         0: .line 235
            return
        end local 0 // io.vertx.core.AsyncResult ar
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0    ar  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;

  private void lambda$3(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
        start local 1 // io.vertx.core.Handler fut
         0: .line 244
            aload 0 /* this */
            aload 1 /* fut */
            invokevirtual io.vertx.rxjava.core.streams.WriteStreamImpl.end:(Lio/vertx/core/Handler;)V
         1: .line 245
            return
        end local 1 // io.vertx.core.Handler fut
        end local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/rxjava/core/streams/WriteStreamImpl<TT;>;
            0    2     1   fut  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;

  private static void lambda$4(io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.vertx.core.AsyncResult ar
         0: .line 262
            return
        end local 0 // io.vertx.core.AsyncResult ar
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0    ar  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;

  private void lambda$5(java.lang.Object, io.vertx.core.Handler);
    descriptor: (Ljava/lang/Object;Lio/vertx/core/Handler;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
        start local 2 // io.vertx.core.Handler fut
         0: .line 272
            aload 0 /* this */
            aload 1
            aload 2 /* fut */
            invokevirtual io.vertx.rxjava.core.streams.WriteStreamImpl.end:(Ljava/lang/Object;Lio/vertx/core/Handler;)V
         1: .line 273
            return
        end local 2 // io.vertx.core.Handler fut
        end local 0 // io.vertx.rxjava.core.streams.WriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/rxjava/core/streams/WriteStreamImpl<TT;>;
            0    2     2   fut  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Lio/vertx/rxjava/core/streams/WriteStream<TT;>;
SourceFile: "WriteStream.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public abstract OnSubscribe = rx.Single$OnSubscribe of rx.Single