public class io.vertx.core.streams.impl.PipeImpl<T> implements io.vertx.core.streams.Pipe<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.streams.impl.PipeImpl
  super_class: java.lang.Object
{
  private final io.vertx.core.Promise<java.lang.Void> result;
    descriptor: Lio/vertx/core/Promise;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lio/vertx/core/Promise<Ljava/lang/Void;>;

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

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

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

  private io.vertx.core.streams.WriteStream<T> dst;
    descriptor: Lio/vertx/core/streams/WriteStream;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/streams/WriteStream<TT;>;

  public void <init>(io.vertx.core.streams.ReadStream<T>);
    descriptor: (Lio/vertx/core/streams/ReadStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.streams.impl.PipeImpl this
        start local 1 // io.vertx.core.streams.ReadStream src
         0: .line 30
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 26
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.streams.impl.PipeImpl.endOnSuccess:Z
         2: .line 27
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.streams.impl.PipeImpl.endOnFailure:Z
         3: .line 31
            aload 0 /* this */
            aload 1 /* src */
            putfield io.vertx.core.streams.impl.PipeImpl.src:Lio/vertx/core/streams/ReadStream;
         4: .line 32
            aload 0 /* this */
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            putfield io.vertx.core.streams.impl.PipeImpl.result:Lio/vertx/core/Promise;
         5: .line 35
            aload 1 /* src */
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.result:Lio/vertx/core/Promise;
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic handle(Lio/vertx/core/Promise;)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/core/Promise.tryComplete(Ljava/lang/Object;)Z (9 itf)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.streams.ReadStream.endHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
            pop
         6: .line 36
            aload 1 /* src */
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.result:Lio/vertx/core/Promise;
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic handle(Lio/vertx/core/Promise;)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/core/Promise.tryFail(Ljava/lang/Throwable;)Z (9 itf)
                  (Ljava/lang/Throwable;)V
            invokeinterface io.vertx.core.streams.ReadStream.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
            pop
         7: .line 37
            return
        end local 1 // io.vertx.core.streams.ReadStream src
        end local 0 // io.vertx.core.streams.impl.PipeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/vertx/core/streams/impl/PipeImpl<TT;>;
            0    8     1   src  Lio/vertx/core/streams/ReadStream<TT;>;
    Signature: (Lio/vertx/core/streams/ReadStream<TT;>;)V
    MethodParameters:
      Name  Flags
      src   

  public synchronized io.vertx.core.streams.Pipe<T> endOnFailure(boolean);
    descriptor: (Z)Lio/vertx/core/streams/Pipe;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.streams.impl.PipeImpl this
        start local 1 // boolean end
         0: .line 41
            aload 0 /* this */
            iload 1 /* end */
            putfield io.vertx.core.streams.impl.PipeImpl.endOnFailure:Z
         1: .line 42
            aload 0 /* this */
            areturn
        end local 1 // boolean end
        end local 0 // io.vertx.core.streams.impl.PipeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/streams/impl/PipeImpl<TT;>;
            0    2     1   end  Z
    Signature: (Z)Lio/vertx/core/streams/Pipe<TT;>;
    MethodParameters:
      Name  Flags
      end   

  public synchronized io.vertx.core.streams.Pipe<T> endOnSuccess(boolean);
    descriptor: (Z)Lio/vertx/core/streams/Pipe;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.streams.impl.PipeImpl this
        start local 1 // boolean end
         0: .line 47
            aload 0 /* this */
            iload 1 /* end */
            putfield io.vertx.core.streams.impl.PipeImpl.endOnSuccess:Z
         1: .line 48
            aload 0 /* this */
            areturn
        end local 1 // boolean end
        end local 0 // io.vertx.core.streams.impl.PipeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/streams/impl/PipeImpl<TT;>;
            0    2     1   end  Z
    Signature: (Z)Lio/vertx/core/streams/Pipe<TT;>;
    MethodParameters:
      Name  Flags
      end   

  public synchronized io.vertx.core.streams.Pipe<T> endOnComplete(boolean);
    descriptor: (Z)Lio/vertx/core/streams/Pipe;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.streams.impl.PipeImpl this
        start local 1 // boolean end
         0: .line 53
            aload 0 /* this */
            iload 1 /* end */
            putfield io.vertx.core.streams.impl.PipeImpl.endOnSuccess:Z
         1: .line 54
            aload 0 /* this */
            iload 1 /* end */
            putfield io.vertx.core.streams.impl.PipeImpl.endOnFailure:Z
         2: .line 55
            aload 0 /* this */
            areturn
        end local 1 // boolean end
        end local 0 // io.vertx.core.streams.impl.PipeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/streams/impl/PipeImpl<TT;>;
            0    3     1   end  Z
    Signature: (Z)Lio/vertx/core/streams/Pipe<TT;>;
    MethodParameters:
      Name  Flags
      end   

  private void handleWriteResult(io.vertx.core.AsyncResult<java.lang.Void>);
    descriptor: (Lio/vertx/core/AsyncResult;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.core.streams.impl.PipeImpl this
        start local 1 // io.vertx.core.AsyncResult ack
         0: .line 59
            aload 1 /* ack */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 2
         1: .line 60
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.result:Lio/vertx/core/Promise;
            new io.vertx.core.streams.impl.PipeImpl$WriteException
            dup
            aload 1 /* ack */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokespecial io.vertx.core.streams.impl.PipeImpl$WriteException.<init>:(Ljava/lang/Throwable;)V
            invokeinterface io.vertx.core.Promise.tryFail:(Ljava/lang/Throwable;)Z
            pop
         2: .line 62
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.AsyncResult ack
        end local 0 // io.vertx.core.streams.impl.PipeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/streams/impl/PipeImpl<TT;>;
            0    3     1   ack  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;)V
    MethodParameters:
      Name  Flags
      ack   

  public void to(io.vertx.core.streams.WriteStream<T>, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/streams/WriteStream;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.vertx.core.streams.impl.PipeImpl this
        start local 1 // io.vertx.core.streams.WriteStream ws
        start local 2 // io.vertx.core.Handler completionHandler
         0: .line 66
            aload 1 /* ws */
            ifnonnull 2
         1: .line 67
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         2: .line 71
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         3: .line 72
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.dst:Lio/vertx/core/streams/WriteStream;
            ifnull 5
         4: .line 73
            new java.lang.IllegalStateException
            dup
            invokespecial java.lang.IllegalStateException.<init>:()V
            athrow
         5: .line 75
      StackMap locals: io.vertx.core.streams.impl.PipeImpl
      StackMap stack:
            aload 0 /* this */
            aload 1 /* ws */
            putfield io.vertx.core.streams.impl.PipeImpl.dst:Lio/vertx/core/streams/WriteStream;
         6: .line 76
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.endOnSuccess:Z
            pop
         7: .line 77
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.endOnFailure:Z
            pop
         8: .line 71
            aload 3
            monitorexit
         9: goto 12
      StackMap locals:
      StackMap stack: java.lang.Throwable
        10: aload 3
            monitorexit
        11: athrow
        12: .line 79
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/core/streams/impl/PipeImpl;)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/core/streams/impl/PipeImpl.lambda$2(Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            astore 3 /* drainHandler */
        start local 3 // io.vertx.core.Handler drainHandler
        13: .line 80
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.src:Lio/vertx/core/streams/ReadStream;
            aload 0 /* this */
            aload 1 /* ws */
            aload 3 /* drainHandler */
            invokedynamic handle(Lio/vertx/core/streams/impl/PipeImpl;Lio/vertx/core/streams/WriteStream;Lio/vertx/core/Handler;)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/core/streams/impl/PipeImpl.lambda$3(Lio/vertx/core/streams/WriteStream;Lio/vertx/core/Handler;Ljava/lang/Object;)V (7)
                  (Ljava/lang/Object;)V
            invokeinterface io.vertx.core.streams.ReadStream.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
            pop
        14: .line 87
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.src:Lio/vertx/core/streams/ReadStream;
            invokeinterface io.vertx.core.streams.ReadStream.resume:()Lio/vertx/core/streams/ReadStream;
            pop
        15: .line 88
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.result:Lio/vertx/core/Promise;
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            aload 0 /* this */
            aload 2 /* completionHandler */
            invokedynamic handle(Lio/vertx/core/streams/impl/PipeImpl;Lio/vertx/core/Handler;)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/core/streams/impl/PipeImpl.lambda$5(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
        16: .line 112
            return
        end local 3 // io.vertx.core.Handler drainHandler
        end local 2 // io.vertx.core.Handler completionHandler
        end local 1 // io.vertx.core.streams.WriteStream ws
        end local 0 // io.vertx.core.streams.impl.PipeImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   17     0               this  Lio/vertx/core/streams/impl/PipeImpl<TT;>;
            0   17     1                 ws  Lio/vertx/core/streams/WriteStream<TT;>;
            0   17     2  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
           13   17     3       drainHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
      Exception table:
        from    to  target  type
           3     9      10  any
          10    11      10  any
    Signature: (Lio/vertx/core/streams/WriteStream<TT;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
                   Name  Flags
      ws                 
      completionHandler  

  private void handleSuccess(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.streams.impl.PipeImpl this
        start local 1 // io.vertx.core.Handler completionHandler
         0: .line 115
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.endOnSuccess:Z
            ifeq 3
         1: .line 116
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.dst:Lio/vertx/core/streams/WriteStream;
            aload 1 /* completionHandler */
            invokeinterface io.vertx.core.streams.WriteStream.end:(Lio/vertx/core/Handler;)V
         2: .line 117
            goto 4
         3: .line 118
      StackMap locals:
      StackMap stack:
            aload 1 /* completionHandler */
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         4: .line 120
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.Handler completionHandler
        end local 0 // io.vertx.core.streams.impl.PipeImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    5     0               this  Lio/vertx/core/streams/impl/PipeImpl<TT;>;
            0    5     1  completionHandler  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
      completionHandler  

  private void handleFailure(java.lang.Throwable, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Ljava/lang/Throwable;Lio/vertx/core/Handler;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.core.streams.impl.PipeImpl this
        start local 1 // java.lang.Throwable cause
        start local 2 // io.vertx.core.Handler completionHandler
         0: .line 123
            aload 1 /* cause */
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            astore 3 /* res */
        start local 3 // io.vertx.core.Future res
         1: .line 124
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.endOnFailure:Z
            ifeq 4
         2: .line 125
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.dst:Lio/vertx/core/streams/WriteStream;
            aload 2 /* completionHandler */
            aload 3 /* res */
            invokedynamic handle(Lio/vertx/core/Handler;Lio/vertx/core/Future;)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/core/streams/impl/PipeImpl.lambda$6(Lio/vertx/core/Handler;Lio/vertx/core/Future;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.streams.WriteStream.end:(Lio/vertx/core/Handler;)V
         3: .line 128
            goto 5
         4: .line 129
      StackMap locals: io.vertx.core.Future
      StackMap stack:
            aload 2 /* completionHandler */
            aload 3 /* res */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         5: .line 131
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.vertx.core.Future res
        end local 2 // io.vertx.core.Handler completionHandler
        end local 1 // java.lang.Throwable cause
        end local 0 // io.vertx.core.streams.impl.PipeImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    6     0               this  Lio/vertx/core/streams/impl/PipeImpl<TT;>;
            0    6     1              cause  Ljava/lang/Throwable;
            0    6     2  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
            1    6     3                res  Lio/vertx/core/Future<Ljava/lang/Void;>;
    Signature: (Ljava/lang/Throwable;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
                   Name  Flags
      cause              
      completionHandler  

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // io.vertx.core.streams.impl.PipeImpl this
         0: .line 134
            aload 0 /* this */
            dup
            astore 1
            monitorenter
         1: .line 135
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.src:Lio/vertx/core/streams/ReadStream;
            aconst_null
            invokeinterface io.vertx.core.streams.ReadStream.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
            pop
         2: .line 136
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.src:Lio/vertx/core/streams/ReadStream;
            aconst_null
            invokeinterface io.vertx.core.streams.ReadStream.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
            pop
         3: .line 137
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.dst:Lio/vertx/core/streams/WriteStream;
            ifnull 6
         4: .line 138
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.dst:Lio/vertx/core/streams/WriteStream;
            aconst_null
            invokeinterface io.vertx.core.streams.WriteStream.drainHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/WriteStream;
            pop
         5: .line 139
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.dst:Lio/vertx/core/streams/WriteStream;
            aconst_null
            invokeinterface io.vertx.core.streams.WriteStream.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/WriteStream;
            pop
         6: .line 134
      StackMap locals: io.vertx.core.streams.impl.PipeImpl
      StackMap stack:
            aload 1
            monitorexit
         7: goto 10
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: aload 1
            monitorexit
         9: athrow
        10: .line 142
      StackMap locals:
      StackMap stack:
            new io.vertx.core.VertxException
            dup
            ldc "Pipe closed"
            iconst_1
            invokespecial io.vertx.core.VertxException.<init>:(Ljava/lang/String;Z)V
            astore 1 /* err */
        start local 1 // io.vertx.core.VertxException err
        11: .line 143
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.result:Lio/vertx/core/Promise;
            aload 1 /* err */
            invokeinterface io.vertx.core.Promise.tryFail:(Ljava/lang/Throwable;)Z
            ifeq 13
        12: .line 144
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.src:Lio/vertx/core/streams/ReadStream;
            invokeinterface io.vertx.core.streams.ReadStream.resume:()Lio/vertx/core/streams/ReadStream;
            pop
        13: .line 146
      StackMap locals: io.vertx.core.VertxException
      StackMap stack:
            return
        end local 1 // io.vertx.core.VertxException err
        end local 0 // io.vertx.core.streams.impl.PipeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lio/vertx/core/streams/impl/PipeImpl<TT;>;
           11   14     1   err  Lio/vertx/core/VertxException;
      Exception table:
        from    to  target  type
           1     7       8  any
           8     9       8  any

  private void lambda$2(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.core.streams.impl.PipeImpl this
        start local 1 // java.lang.Void v
         0: .line 79
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.src:Lio/vertx/core/streams/ReadStream;
            invokeinterface io.vertx.core.streams.ReadStream.resume:()Lio/vertx/core/streams/ReadStream;
            return
        end local 1 // java.lang.Void v
        end local 0 // io.vertx.core.streams.impl.PipeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/streams/impl/PipeImpl<TT;>;
            0    1     1     v  Ljava/lang/Void;

  private void lambda$3(io.vertx.core.streams.WriteStream, io.vertx.core.Handler, java.lang.Object);
    descriptor: (Lio/vertx/core/streams/WriteStream;Lio/vertx/core/Handler;Ljava/lang/Object;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.vertx.core.streams.impl.PipeImpl this
        start local 3 // java.lang.Object item
         0: .line 81
            aload 1
            aload 3 /* item */
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/core/streams/impl/PipeImpl;)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/core/streams/impl/PipeImpl.handleWriteResult(Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.streams.WriteStream.write:(Ljava/lang/Object;Lio/vertx/core/Handler;)V
         1: .line 82
            aload 1
            invokeinterface io.vertx.core.streams.WriteStream.writeQueueFull:()Z
            ifeq 4
         2: .line 83
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.src:Lio/vertx/core/streams/ReadStream;
            invokeinterface io.vertx.core.streams.ReadStream.pause:()Lio/vertx/core/streams/ReadStream;
            pop
         3: .line 84
            aload 1
            aload 2
            invokeinterface io.vertx.core.streams.WriteStream.drainHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/WriteStream;
            pop
         4: .line 86
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.lang.Object item
        end local 0 // io.vertx.core.streams.impl.PipeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/streams/impl/PipeImpl<TT;>;
            0    5     3  item  TT;

  private void lambda$5(io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.core.streams.impl.PipeImpl this
        start local 2 // io.vertx.core.AsyncResult ar
         0: .line 90
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.src:Lio/vertx/core/streams/ReadStream;
            aconst_null
            invokeinterface io.vertx.core.streams.ReadStream.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
            pop
         1: .line 91
            goto 3
      StackMap locals:
      StackMap stack: java.lang.Exception
         2: pop
         3: .line 94
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.src:Lio/vertx/core/streams/ReadStream;
            aconst_null
            invokeinterface io.vertx.core.streams.ReadStream.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
            pop
         4: .line 95
            goto 6
      StackMap locals:
      StackMap stack: java.lang.Exception
         5: pop
         6: .line 98
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.src:Lio/vertx/core/streams/ReadStream;
            aconst_null
            invokeinterface io.vertx.core.streams.ReadStream.endHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
            pop
         7: .line 99
            goto 9
      StackMap locals:
      StackMap stack: java.lang.Exception
         8: pop
         9: .line 101
      StackMap locals:
      StackMap stack:
            aload 2 /* ar */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 12
        10: .line 102
            aload 0 /* this */
            aload 1
            invokevirtual io.vertx.core.streams.impl.PipeImpl.handleSuccess:(Lio/vertx/core/Handler;)V
        11: .line 103
            goto 17
        12: .line 104
      StackMap locals:
      StackMap stack:
            aload 2 /* ar */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            astore 3 /* err */
        start local 3 // java.lang.Throwable err
        13: .line 105
            aload 3 /* err */
            instanceof io.vertx.core.streams.impl.PipeImpl$WriteException
            ifeq 16
        14: .line 106
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.PipeImpl.src:Lio/vertx/core/streams/ReadStream;
            invokeinterface io.vertx.core.streams.ReadStream.resume:()Lio/vertx/core/streams/ReadStream;
            pop
        15: .line 107
            aload 3 /* err */
            invokevirtual java.lang.Throwable.getCause:()Ljava/lang/Throwable;
            astore 3 /* err */
        16: .line 109
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 0 /* this */
            aload 3 /* err */
            aload 1
            invokevirtual io.vertx.core.streams.impl.PipeImpl.handleFailure:(Ljava/lang/Throwable;Lio/vertx/core/Handler;)V
        end local 3 // java.lang.Throwable err
        17: .line 111
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.AsyncResult ar
        end local 0 // io.vertx.core.streams.impl.PipeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lio/vertx/core/streams/impl/PipeImpl<TT;>;
            0   18     2    ar  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;
           13   17     3   err  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.Exception
           3     4       5  Class java.lang.Exception
           6     7       8  Class java.lang.Exception

  private static void lambda$6(io.vertx.core.Handler, io.vertx.core.Future, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/Future;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 2 // io.vertx.core.AsyncResult ignore
         0: .line 126
            aload 0
            aload 1
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         1: .line 127
            return
        end local 2 // io.vertx.core.AsyncResult ignore
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     2  ignore  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Lio/vertx/core/streams/Pipe<TT;>;
SourceFile: "PipeImpl.java"
NestMembers:
  io.vertx.core.streams.impl.PipeImpl$WriteException
InnerClasses:
  private WriteException = io.vertx.core.streams.impl.PipeImpl$WriteException of io.vertx.core.streams.impl.PipeImpl
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles