public interface io.vertx.core.streams.ReadStream<T> extends io.vertx.core.streams.StreamBase
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: io.vertx.core.streams.ReadStream
  super_class: java.lang.Object
{
  public abstract io.vertx.core.streams.ReadStream<T> exceptionHandler(io.vertx.core.Handler<java.lang.Throwable>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Throwable;>;)Lio/vertx/core/streams/ReadStream<TT;>;
    MethodParameters:
         Name  Flags
      handler  

  public abstract io.vertx.core.streams.ReadStream<T> handler(io.vertx.core.Handler<T>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<TT;>;)Lio/vertx/core/streams/ReadStream<TT;>;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        io.vertx.codegen.annotations.Nullable()
    MethodParameters:
         Name  Flags
      handler  

  public abstract io.vertx.core.streams.ReadStream<T> pause();
    descriptor: ()Lio/vertx/core/streams/ReadStream;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Lio/vertx/core/streams/ReadStream<TT;>;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()

  public abstract io.vertx.core.streams.ReadStream<T> resume();
    descriptor: ()Lio/vertx/core/streams/ReadStream;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Lio/vertx/core/streams/ReadStream<TT;>;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()

  public abstract io.vertx.core.streams.ReadStream<T> fetch(long);
    descriptor: (J)Lio/vertx/core/streams/ReadStream;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (J)Lio/vertx/core/streams/ReadStream<TT;>;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
        Name  Flags
      amount  

  public abstract io.vertx.core.streams.ReadStream<T> endHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)Lio/vertx/core/streams/ReadStream<TT;>;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        io.vertx.codegen.annotations.Nullable()
    MethodParameters:
            Name  Flags
      endHandler  

  public io.vertx.core.streams.Pipe<T> pipe();
    descriptor: ()Lio/vertx/core/streams/Pipe;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.streams.ReadStream this
         0: .line 108
            aload 0 /* this */
            invokeinterface io.vertx.core.streams.ReadStream.pause:()Lio/vertx/core/streams/ReadStream;
            pop
         1: .line 109
            new io.vertx.core.streams.impl.PipeImpl
            dup
            aload 0 /* this */
            invokespecial io.vertx.core.streams.impl.PipeImpl.<init>:(Lio/vertx/core/streams/ReadStream;)V
            areturn
        end local 0 // io.vertx.core.streams.ReadStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/streams/ReadStream<TT;>;
    Signature: ()Lio/vertx/core/streams/Pipe<TT;>;

  public void pipeTo(io.vertx.core.streams.WriteStream<T>);
    descriptor: (Lio/vertx/core/streams/WriteStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.streams.ReadStream this
        start local 1 // io.vertx.core.streams.WriteStream dst
         0: .line 116
            new io.vertx.core.streams.impl.PipeImpl
            dup
            aload 0 /* this */
            invokespecial io.vertx.core.streams.impl.PipeImpl.<init>:(Lio/vertx/core/streams/ReadStream;)V
            aload 1 /* dst */
            invokevirtual io.vertx.core.streams.impl.PipeImpl.to:(Lio/vertx/core/streams/WriteStream;)V
         1: .line 117
            return
        end local 1 // io.vertx.core.streams.WriteStream dst
        end local 0 // io.vertx.core.streams.ReadStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/streams/ReadStream<TT;>;
            0    2     1   dst  Lio/vertx/core/streams/WriteStream<TT;>;
    Signature: (Lio/vertx/core/streams/WriteStream<TT;>;)V
    MethodParameters:
      Name  Flags
      dst   

  public void pipeTo(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=3, locals=3, args_size=3
        start local 0 // io.vertx.core.streams.ReadStream this
        start local 1 // io.vertx.core.streams.WriteStream dst
        start local 2 // io.vertx.core.Handler handler
         0: .line 130
            new io.vertx.core.streams.impl.PipeImpl
            dup
            aload 0 /* this */
            invokespecial io.vertx.core.streams.impl.PipeImpl.<init>:(Lio/vertx/core/streams/ReadStream;)V
            aload 1 /* dst */
            aload 2 /* handler */
            invokevirtual io.vertx.core.streams.impl.PipeImpl.to:(Lio/vertx/core/streams/WriteStream;Lio/vertx/core/Handler;)V
         1: .line 131
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // io.vertx.core.streams.WriteStream dst
        end local 0 // io.vertx.core.streams.ReadStream this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/streams/ReadStream<TT;>;
            0    2     1      dst  Lio/vertx/core/streams/WriteStream<TT;>;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/streams/WriteStream<TT;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
         Name  Flags
      dst      
      handler  

  public io.vertx.core.streams.StreamBase exceptionHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/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
            invokeinterface io.vertx.core.streams.ReadStream.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Lio/vertx/core/streams/StreamBase;
SourceFile: "ReadStream.java"
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.VertxGen(concrete = false)