public class io.vertx.rx.java.ObservableReadStream<T, R> implements rx.Observable$OnSubscribe<R>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.rx.java.ObservableReadStream
  super_class: java.lang.Object
{
  private static final java.lang.Throwable COMPLETED_SENTINEL;
    descriptor: Ljava/lang/Throwable;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  public static final long DEFAULT_MAX_BUFFER_SIZE;
    descriptor: J
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 256

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

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

  private final java.util.concurrent.atomic.AtomicReference<io.vertx.rx.java.ObservableReadStream<T, R>.Sub> subscription;
    descriptor: Ljava/util/concurrent/atomic/AtomicReference;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/concurrent/atomic/AtomicReference<Lio/vertx/rx/java/ObservableReadStream<TT;TR;>.Sub;>;

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 24
            new java.lang.Throwable
            dup
            invokespecial java.lang.Throwable.<init>:()V
            putstatic io.vertx.rx.java.ObservableReadStream.COMPLETED_SENTINEL:Ljava/lang/Throwable;
         1: .line 25
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(io.vertx.core.streams.ReadStream<T>, java.util.function.Function<T, R>);
    descriptor: (Lio/vertx/core/streams/ReadStream;Ljava/util/function/Function;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // io.vertx.rx.java.ObservableReadStream this
        start local 1 // io.vertx.core.streams.ReadStream stream
        start local 2 // java.util.function.Function adapter
         0: .line 33
            aload 0 /* this */
            aload 1 /* stream */
            aload 2 /* adapter */
            ldc 256
            invokespecial io.vertx.rx.java.ObservableReadStream.<init>:(Lio/vertx/core/streams/ReadStream;Ljava/util/function/Function;J)V
         1: .line 34
            return
        end local 2 // java.util.function.Function adapter
        end local 1 // io.vertx.core.streams.ReadStream stream
        end local 0 // io.vertx.rx.java.ObservableReadStream this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/rx/java/ObservableReadStream<TT;TR;>;
            0    2     1   stream  Lio/vertx/core/streams/ReadStream<TT;>;
            0    2     2  adapter  Ljava/util/function/Function<TT;TR;>;
    Signature: (Lio/vertx/core/streams/ReadStream<TT;>;Ljava/util/function/Function<TT;TR;>;)V
    MethodParameters:
         Name  Flags
      stream   
      adapter  

  public void <init>(io.vertx.core.streams.ReadStream<T>, java.util.function.Function<T, R>, );
    descriptor: (Lio/vertx/core/streams/ReadStream;Ljava/util/function/Function;J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // io.vertx.rx.java.ObservableReadStream this
        start local 1 // io.vertx.core.streams.ReadStream stream
        start local 2 // java.util.function.Function adapter
        start local 3 // long maxBufferSize
         0: .line 36
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 29
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicReference
            dup
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:()V
            putfield io.vertx.rx.java.ObservableReadStream.subscription:Ljava/util/concurrent/atomic/AtomicReference;
         2: .line 38
            aload 1 /* stream */
            invokeinterface io.vertx.core.streams.ReadStream.pause:()Lio/vertx/core/streams/ReadStream;
            pop
         3: .line 40
            aload 0 /* this */
            aload 1 /* stream */
            putfield io.vertx.rx.java.ObservableReadStream.stream:Lio/vertx/core/streams/ReadStream;
         4: .line 41
            aload 0 /* this */
            aload 2 /* adapter */
            putfield io.vertx.rx.java.ObservableReadStream.adapter:Ljava/util/function/Function;
         5: .line 42
            return
        end local 3 // long maxBufferSize
        end local 2 // java.util.function.Function adapter
        end local 1 // io.vertx.core.streams.ReadStream stream
        end local 0 // io.vertx.rx.java.ObservableReadStream this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0           this  Lio/vertx/rx/java/ObservableReadStream<TT;TR;>;
            0    6     1         stream  Lio/vertx/core/streams/ReadStream<TT;>;
            0    6     2        adapter  Ljava/util/function/Function<TT;TR;>;
            0    6     3  maxBufferSize  J
    Signature: (Lio/vertx/core/streams/ReadStream<TT;>;Ljava/util/function/Function<TT;TR;>;J)V
    MethodParameters:
               Name  Flags
      stream         
      adapter        
      maxBufferSize  

  public long getRequested();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.rx.java.ObservableReadStream this
         0: .line 45
            aload 0 /* this */
            getfield io.vertx.rx.java.ObservableReadStream.subscription:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast io.vertx.rx.java.ObservableReadStream$Sub
            astore 1 /* sub */
        start local 1 // io.vertx.rx.java.ObservableReadStream$Sub sub
         1: .line 46
            aload 1 /* sub */
            ifnull 2
            aload 1 /* sub */
            getfield io.vertx.rx.java.ObservableReadStream$Sub.adapter:Lio/vertx/rx/java/ObservableReadStream$Adapter;
            invokevirtual io.vertx.rx.java.ObservableReadStream$Adapter.requested:()J
            goto 3
      StackMap locals: io.vertx.rx.java.ObservableReadStream$Sub
      StackMap stack:
         2: lconst_0
      StackMap locals:
      StackMap stack: long
         3: lreturn
        end local 1 // io.vertx.rx.java.ObservableReadStream$Sub sub
        end local 0 // io.vertx.rx.java.ObservableReadStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/rx/java/ObservableReadStream<TT;TR;>;
            1    4     1   sub  Lio/vertx/rx/java/ObservableReadStream<TT;TR;>.Sub;

  public void call(rx.Subscriber<? super R>);
    descriptor: (Lrx/Subscriber;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // io.vertx.rx.java.ObservableReadStream this
        start local 1 // rx.Subscriber subscriber
         0: .line 92
            new io.vertx.rx.java.ObservableReadStream$QueueAdapter
            dup
            aload 0 /* this */
            aload 1 /* subscriber */
            invokespecial io.vertx.rx.java.ObservableReadStream$QueueAdapter.<init>:(Lio/vertx/rx/java/ObservableReadStream;Lrx/Subscriber;)V
            astore 2 /* adapter */
        start local 2 // io.vertx.rx.java.ObservableReadStream$QueueAdapter adapter
         1: .line 93
            new io.vertx.rx.java.ObservableReadStream$Sub
            dup
            aload 0 /* this */
            aload 2 /* adapter */
            invokespecial io.vertx.rx.java.ObservableReadStream$Sub.<init>:(Lio/vertx/rx/java/ObservableReadStream;Lio/vertx/rx/java/ObservableReadStream$Adapter;)V
            astore 3 /* sub */
        start local 3 // io.vertx.rx.java.ObservableReadStream$Sub sub
         2: .line 94
            aload 0 /* this */
            getfield io.vertx.rx.java.ObservableReadStream.subscription:Ljava/util/concurrent/atomic/AtomicReference;
            aconst_null
            aload 3 /* sub */
            invokevirtual java.util.concurrent.atomic.AtomicReference.compareAndSet:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 4
         3: .line 95
            new java.lang.IllegalStateException
            dup
            invokespecial java.lang.IllegalStateException.<init>:()V
            athrow
         4: .line 98
      StackMap locals: io.vertx.rx.java.ObservableReadStream$QueueAdapter io.vertx.rx.java.ObservableReadStream$Sub
      StackMap stack:
            aload 1 /* subscriber */
            aload 3 /* sub */
            invokevirtual rx.Subscriber.setProducer:(Lrx/Producer;)V
         5: .line 99
            aload 1 /* subscriber */
            aload 3 /* sub */
            invokevirtual rx.Subscriber.add:(Lrx/Subscription;)V
         6: .line 103
            aload 0 /* this */
            getfield io.vertx.rx.java.ObservableReadStream.stream:Lio/vertx/core/streams/ReadStream;
            aload 3 /* sub */
            getfield io.vertx.rx.java.ObservableReadStream$Sub.adapter:Lio/vertx/rx/java/ObservableReadStream$Adapter;
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic handle(Lio/vertx/rx/java/ObservableReadStream$Adapter;)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/rx/java/ObservableReadStream$Adapter.end(Ljava/lang/Throwable;)V (5)
                  (Ljava/lang/Throwable;)V
            invokeinterface io.vertx.core.streams.ReadStream.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
            pop
         7: .line 104
            aload 0 /* this */
            getfield io.vertx.rx.java.ObservableReadStream.stream:Lio/vertx/core/streams/ReadStream;
            aload 3 /* sub */
            invokedynamic handle(Lio/vertx/rx/java/ObservableReadStream$Sub;)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/rx/java/ObservableReadStream.lambda$1(Lio/vertx/rx/java/ObservableReadStream$Sub;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.streams.ReadStream.endHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
            pop
         8: .line 105
            aload 0 /* this */
            getfield io.vertx.rx.java.ObservableReadStream.stream:Lio/vertx/core/streams/ReadStream;
            aload 3 /* sub */
            getfield io.vertx.rx.java.ObservableReadStream$Sub.adapter:Lio/vertx/rx/java/ObservableReadStream$Adapter;
            invokeinterface io.vertx.core.streams.ReadStream.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
            pop
         9: .line 106
            aload 0 /* this */
            iconst_1
            putfield io.vertx.rx.java.ObservableReadStream.subscribed:Z
        10: .line 109
            aload 2 /* adapter */
            invokevirtual io.vertx.rx.java.ObservableReadStream$QueueAdapter.requested:()J
            lstore 5 /* requested */
        start local 5 // long requested
        11: .line 110
            aload 0 /* this */
            getfield io.vertx.rx.java.ObservableReadStream.stream:Lio/vertx/core/streams/ReadStream;
            invokeinterface io.vertx.core.streams.ReadStream.pause:()Lio/vertx/core/streams/ReadStream;
            pop
        12: .line 111
            lload 5 /* requested */
            lconst_0
            lcmp
            ifle 14
        13: .line 112
            aload 0 /* this */
            getfield io.vertx.rx.java.ObservableReadStream.stream:Lio/vertx/core/streams/ReadStream;
            lload 5 /* requested */
            invokeinterface io.vertx.core.streams.ReadStream.fetch:(J)Lio/vertx/core/streams/ReadStream;
            pop
        14: .line 114
      StackMap locals: io.vertx.rx.java.ObservableReadStream rx.Subscriber io.vertx.rx.java.ObservableReadStream$QueueAdapter io.vertx.rx.java.ObservableReadStream$Sub top long
      StackMap stack:
            return
        end local 5 // long requested
        end local 3 // io.vertx.rx.java.ObservableReadStream$Sub sub
        end local 2 // io.vertx.rx.java.ObservableReadStream$QueueAdapter adapter
        end local 1 // rx.Subscriber subscriber
        end local 0 // io.vertx.rx.java.ObservableReadStream this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   15     0        this  Lio/vertx/rx/java/ObservableReadStream<TT;TR;>;
            0   15     1  subscriber  Lrx/Subscriber<-TR;>;
            1   15     2     adapter  Lio/vertx/rx/java/ObservableReadStream<TT;TR;>.QueueAdapter;
            2   15     3         sub  Lio/vertx/rx/java/ObservableReadStream<TT;TR;>.Sub;
           11   15     5   requested  J
    Signature: (Lrx/Subscriber<-TR;>;)V
    MethodParameters:
            Name  Flags
      subscriber  

  public void call(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast rx.Subscriber
            invokevirtual io.vertx.rx.java.ObservableReadStream.call:(Lrx/Subscriber;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private static void lambda$1(io.vertx.rx.java.ObservableReadStream$Sub, java.lang.Void);
    descriptor: (Lio/vertx/rx/java/ObservableReadStream$Sub;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // java.lang.Void v
         0: .line 104
            aload 0
            getfield io.vertx.rx.java.ObservableReadStream$Sub.adapter:Lio/vertx/rx/java/ObservableReadStream$Adapter;
            getstatic io.vertx.rx.java.ObservableReadStream.COMPLETED_SENTINEL:Ljava/lang/Throwable;
            invokevirtual io.vertx.rx.java.ObservableReadStream$Adapter.end:(Ljava/lang/Throwable;)V
            return
        end local 1 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1     v  Ljava/lang/Void;
}
Signature: <T:Ljava/lang/Object;R:Ljava/lang/Object;>Ljava/lang/Object;Lrx/Observable$OnSubscribe<TR;>;
SourceFile: "ObservableReadStream.java"
NestMembers:
  io.vertx.rx.java.ObservableReadStream$Adapter  io.vertx.rx.java.ObservableReadStream$QueueAdapter  io.vertx.rx.java.ObservableReadStream$Sub
InnerClasses:
  private abstract Adapter = io.vertx.rx.java.ObservableReadStream$Adapter of io.vertx.rx.java.ObservableReadStream
  private QueueAdapter = io.vertx.rx.java.ObservableReadStream$QueueAdapter of io.vertx.rx.java.ObservableReadStream
  private Sub = io.vertx.rx.java.ObservableReadStream$Sub of io.vertx.rx.java.ObservableReadStream
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public abstract OnSubscribe = rx.Observable$OnSubscribe of rx.Observable