class io.vertx.core.impl.VertxImpl$TimeoutStreamImpl implements io.vertx.core.TimeoutStream, io.vertx.core.Handler<java.lang.Long>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.vertx.core.impl.VertxImpl$TimeoutStreamImpl
  super_class: java.lang.Object
{
  private final long delay;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean periodic;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.lang.Long id;
    descriptor: Ljava/lang/Long;
    flags: (0x0002) ACC_PRIVATE

  private io.vertx.core.Handler<java.lang.Long> handler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Ljava/lang/Long;>;

  private io.vertx.core.Handler<java.lang.Void> endHandler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Ljava/lang/Void;>;

  private long demand;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  final io.vertx.core.impl.VertxImpl this$0;
    descriptor: Lio/vertx/core/impl/VertxImpl;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  public void <init>(io.vertx.core.impl.VertxImpl, long, boolean);
    descriptor: (Lio/vertx/core/impl/VertxImpl;JZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // io.vertx.core.impl.VertxImpl$TimeoutStreamImpl this
        start local 2 // long delay
        start local 4 // boolean periodic
         0: .line 986
            aload 0 /* this */
            aload 1
            putfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.this$0:Lio/vertx/core/impl/VertxImpl;
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 987
            aload 0 /* this */
            lload 2 /* delay */
            putfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.delay:J
         2: .line 988
            aload 0 /* this */
            iload 4 /* periodic */
            putfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.periodic:Z
         3: .line 989
            aload 0 /* this */
            ldc 9223372036854775807
            putfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.demand:J
         4: .line 990
            return
        end local 4 // boolean periodic
        end local 2 // long delay
        end local 0 // io.vertx.core.impl.VertxImpl$TimeoutStreamImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lio/vertx/core/impl/VertxImpl$TimeoutStreamImpl;
            0    5     2     delay  J
            0    5     4  periodic  Z
    MethodParameters:
          Name  Flags
      this$0    final
      delay     
      periodic  

  public synchronized void handle(java.lang.Long);
    descriptor: (Ljava/lang/Long;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // io.vertx.core.impl.VertxImpl$TimeoutStreamImpl this
        start local 1 // java.lang.Long event
         0: .line 995
            aload 0 /* this */
            getfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.demand:J
            lconst_0
            lcmp
            ifle 8
         1: .line 996
            aload 0 /* this */
            dup
            getfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.demand:J
            lconst_1
            lsub
            putfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.demand:J
         2: .line 997
            aload 0 /* this */
            getfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.handler:Lio/vertx/core/Handler;
            aload 1 /* event */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         3: .line 999
            goto 8
      StackMap locals:
      StackMap stack: java.lang.Throwable
         4: astore 2
         5: .line 1000
            aload 0 /* this */
            getfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.periodic:Z
            ifne 7
            aload 0 /* this */
            getfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.endHandler:Lio/vertx/core/Handler;
            ifnull 7
         6: .line 1001
            aload 0 /* this */
            getfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.endHandler:Lio/vertx/core/Handler;
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         7: .line 1003
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 2
            athrow
         8: .line 1000
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.periodic:Z
            ifne 10
            aload 0 /* this */
            getfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.endHandler:Lio/vertx/core/Handler;
            ifnull 10
         9: .line 1001
            aload 0 /* this */
            getfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.endHandler:Lio/vertx/core/Handler;
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        10: .line 1004
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Long event
        end local 0 // io.vertx.core.impl.VertxImpl$TimeoutStreamImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Lio/vertx/core/impl/VertxImpl$TimeoutStreamImpl;
            0   11     1  event  Ljava/lang/Long;
      Exception table:
        from    to  target  type
           0     4       4  any
    MethodParameters:
       Name  Flags
      event  

  public synchronized io.vertx.core.TimeoutStream fetch(long);
    descriptor: (J)Lio/vertx/core/TimeoutStream;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // io.vertx.core.impl.VertxImpl$TimeoutStreamImpl this
        start local 1 // long amount
         0: .line 1008
            aload 0 /* this */
            dup
            getfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.demand:J
            lload 1 /* amount */
            ladd
            putfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.demand:J
         1: .line 1009
            aload 0 /* this */
            getfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.demand:J
            lconst_0
            lcmp
            ifge 3
         2: .line 1010
            aload 0 /* this */
            ldc 9223372036854775807
            putfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.demand:J
         3: .line 1012
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // long amount
        end local 0 // io.vertx.core.impl.VertxImpl$TimeoutStreamImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lio/vertx/core/impl/VertxImpl$TimeoutStreamImpl;
            0    4     1  amount  J
    MethodParameters:
        Name  Flags
      amount  

  public io.vertx.core.TimeoutStream exceptionHandler(io.vertx.core.Handler<java.lang.Throwable>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/TimeoutStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.VertxImpl$TimeoutStreamImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 1017
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.impl.VertxImpl$TimeoutStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/core/impl/VertxImpl$TimeoutStreamImpl;
            0    1     1  handler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Throwable;>;)Lio/vertx/core/TimeoutStream;
    MethodParameters:
         Name  Flags
      handler  

  public void cancel();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.VertxImpl$TimeoutStreamImpl this
         0: .line 1022
            aload 0 /* this */
            getfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.id:Ljava/lang/Long;
            ifnull 2
         1: .line 1023
            aload 0 /* this */
            getfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.this$0:Lio/vertx/core/impl/VertxImpl;
            aload 0 /* this */
            getfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.id:Ljava/lang/Long;
            invokevirtual java.lang.Long.longValue:()J
            invokevirtual io.vertx.core.impl.VertxImpl.cancelTimer:(J)Z
            pop
         2: .line 1025
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.impl.VertxImpl$TimeoutStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/impl/VertxImpl$TimeoutStreamImpl;

  public synchronized io.vertx.core.TimeoutStream handler(io.vertx.core.Handler<java.lang.Long>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/TimeoutStream;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=7, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.VertxImpl$TimeoutStreamImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 1029
            aload 1 /* handler */
            ifnull 6
         1: .line 1030
            aload 0 /* this */
            getfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.id:Ljava/lang/Long;
            ifnull 3
         2: .line 1031
            new java.lang.IllegalStateException
            dup
            invokespecial java.lang.IllegalStateException.<init>:()V
            athrow
         3: .line 1033
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.handler:Lio/vertx/core/Handler;
         4: .line 1034
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.this$0:Lio/vertx/core/impl/VertxImpl;
            aload 0 /* this */
            getfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.this$0:Lio/vertx/core/impl/VertxImpl;
            invokevirtual io.vertx.core.impl.VertxImpl.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.delay:J
            aload 0 /* this */
            getfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.periodic:Z
            invokevirtual io.vertx.core.impl.VertxImpl.scheduleTimeout:(Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Handler;JZ)J
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            putfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.id:Ljava/lang/Long;
         5: .line 1035
            goto 7
         6: .line 1036
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.cancel:()V
         7: .line 1038
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.impl.VertxImpl$TimeoutStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lio/vertx/core/impl/VertxImpl$TimeoutStreamImpl;
            0    8     1  handler  Lio/vertx/core/Handler<Ljava/lang/Long;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Long;>;)Lio/vertx/core/TimeoutStream;
    MethodParameters:
         Name  Flags
      handler  

  public synchronized io.vertx.core.TimeoutStream pause();
    descriptor: ()Lio/vertx/core/TimeoutStream;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.VertxImpl$TimeoutStreamImpl this
         0: .line 1043
            aload 0 /* this */
            lconst_0
            putfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.demand:J
         1: .line 1044
            aload 0 /* this */
            areturn
        end local 0 // io.vertx.core.impl.VertxImpl$TimeoutStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/impl/VertxImpl$TimeoutStreamImpl;

  public synchronized io.vertx.core.TimeoutStream resume();
    descriptor: ()Lio/vertx/core/TimeoutStream;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.VertxImpl$TimeoutStreamImpl this
         0: .line 1049
            aload 0 /* this */
            ldc 9223372036854775807
            putfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.demand:J
         1: .line 1050
            aload 0 /* this */
            areturn
        end local 0 // io.vertx.core.impl.VertxImpl$TimeoutStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/impl/VertxImpl$TimeoutStreamImpl;

  public synchronized io.vertx.core.TimeoutStream endHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/TimeoutStream;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.VertxImpl$TimeoutStreamImpl this
        start local 1 // io.vertx.core.Handler endHandler
         0: .line 1055
            aload 0 /* this */
            aload 1 /* endHandler */
            putfield io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.endHandler:Lio/vertx/core/Handler;
         1: .line 1056
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler endHandler
        end local 0 // io.vertx.core.impl.VertxImpl$TimeoutStreamImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lio/vertx/core/impl/VertxImpl$TimeoutStreamImpl;
            0    2     1  endHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)Lio/vertx/core/TimeoutStream;
    MethodParameters:
            Name  Flags
      endHandler  

  public io.vertx.core.streams.ReadStream pause();
    descriptor: ()Lio/vertx/core/streams/ReadStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.pause:()Lio/vertx/core/TimeoutStream;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream handler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast io.vertx.core.Handler
            invokevirtual io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/TimeoutStream;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream endHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
    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.core.impl.VertxImpl$TimeoutStreamImpl.endHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/TimeoutStream;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void handle(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 java.lang.Long
            invokevirtual io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.handle:(Ljava/lang/Long;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream resume();
    descriptor: ()Lio/vertx/core/streams/ReadStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.resume:()Lio/vertx/core/TimeoutStream;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream fetch(long);
    descriptor: (J)Lio/vertx/core/streams/ReadStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            lload 1
            invokevirtual io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.fetch:(J)Lio/vertx/core/TimeoutStream;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  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
            invokevirtual io.vertx.core.impl.VertxImpl$TimeoutStreamImpl.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/TimeoutStream;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream exceptionHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
    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.core.impl.VertxImpl$TimeoutStreamImpl.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/TimeoutStream;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Lio/vertx/core/TimeoutStream;Lio/vertx/core/Handler<Ljava/lang/Long;>;
SourceFile: "VertxImpl.java"
NestHost: io.vertx.core.impl.VertxImpl
InnerClasses:
  private TimeoutStreamImpl = io.vertx.core.impl.VertxImpl$TimeoutStreamImpl of io.vertx.core.impl.VertxImpl