public interface io.vertx.core.streams.Pump
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: io.vertx.core.streams.Pump
  super_class: java.lang.Object
{
  public static <T> io.vertx.core.streams.Pump pump(io.vertx.core.streams.ReadStream<T>, io.vertx.core.streams.WriteStream<T>);
    descriptor: (Lio/vertx/core/streams/ReadStream;Lio/vertx/core/streams/WriteStream;)Lio/vertx/core/streams/Pump;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.core.streams.ReadStream rs
        start local 1 // io.vertx.core.streams.WriteStream ws
         0: .line 52
            new io.vertx.core.streams.impl.PumpImpl
            dup
            aload 0 /* rs */
            aload 1 /* ws */
            invokespecial io.vertx.core.streams.impl.PumpImpl.<init>:(Lio/vertx/core/streams/ReadStream;Lio/vertx/core/streams/WriteStream;)V
            areturn
        end local 1 // io.vertx.core.streams.WriteStream ws
        end local 0 // io.vertx.core.streams.ReadStream rs
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0    rs  Lio/vertx/core/streams/ReadStream<TT;>;
            0    1     1    ws  Lio/vertx/core/streams/WriteStream<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/streams/ReadStream<TT;>;Lio/vertx/core/streams/WriteStream<TT;>;)Lio/vertx/core/streams/Pump;
    MethodParameters:
      Name  Flags
      rs    
      ws    

  public static <T> io.vertx.core.streams.Pump pump(io.vertx.core.streams.ReadStream<T>, io.vertx.core.streams.WriteStream<T>, int);
    descriptor: (Lio/vertx/core/streams/ReadStream;Lio/vertx/core/streams/WriteStream;I)Lio/vertx/core/streams/Pump;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // io.vertx.core.streams.ReadStream rs
        start local 1 // io.vertx.core.streams.WriteStream ws
        start local 2 // int writeQueueMaxSize
         0: .line 65
            new io.vertx.core.streams.impl.PumpImpl
            dup
            aload 0 /* rs */
            aload 1 /* ws */
            iload 2 /* writeQueueMaxSize */
            invokespecial io.vertx.core.streams.impl.PumpImpl.<init>:(Lio/vertx/core/streams/ReadStream;Lio/vertx/core/streams/WriteStream;I)V
            areturn
        end local 2 // int writeQueueMaxSize
        end local 1 // io.vertx.core.streams.WriteStream ws
        end local 0 // io.vertx.core.streams.ReadStream rs
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    1     0                 rs  Lio/vertx/core/streams/ReadStream<TT;>;
            0    1     1                 ws  Lio/vertx/core/streams/WriteStream<TT;>;
            0    1     2  writeQueueMaxSize  I
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/streams/ReadStream<TT;>;Lio/vertx/core/streams/WriteStream<TT;>;I)Lio/vertx/core/streams/Pump;
    MethodParameters:
                   Name  Flags
      rs                 
      ws                 
      writeQueueMaxSize  

  public abstract io.vertx.core.streams.Pump setWriteQueueMaxSize(int);
    descriptor: (I)Lio/vertx/core/streams/Pump;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
         Name  Flags
      maxSize  

  public abstract io.vertx.core.streams.Pump start();
    descriptor: ()Lio/vertx/core/streams/Pump;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()

  public abstract io.vertx.core.streams.Pump stop();
    descriptor: ()Lio/vertx/core/streams/Pump;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()

  public abstract int numberPumped();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
}
SourceFile: "Pump.java"
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.VertxGen()