public class io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter implements io.vertx.core.shareddata.Counter
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter
  super_class: java.lang.Object
{
  private final io.vertx.core.impl.VertxInternal vertx;
    descriptor: Lio/vertx/core/impl/VertxInternal;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.hazelcast.cp.IAtomicLong atomicLong;
    descriptor: Lcom/hazelcast/cp/IAtomicLong;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(io.vertx.core.impl.VertxInternal, com.hazelcast.cp.IAtomicLong);
    descriptor: (Lio/vertx/core/impl/VertxInternal;Lcom/hazelcast/cp/IAtomicLong;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
        start local 1 // io.vertx.core.impl.VertxInternal vertx
        start local 2 // com.hazelcast.cp.IAtomicLong atomicLong
         0: .line 33
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 34
            aload 0 /* this */
            aload 1 /* vertx */
            putfield io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter.vertx:Lio/vertx/core/impl/VertxInternal;
         2: .line 35
            aload 0 /* this */
            aload 2 /* atomicLong */
            putfield io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter.atomicLong:Lcom/hazelcast/cp/IAtomicLong;
         3: .line 36
            return
        end local 2 // com.hazelcast.cp.IAtomicLong atomicLong
        end local 1 // io.vertx.core.impl.VertxInternal vertx
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastCounter;
            0    4     1       vertx  Lio/vertx/core/impl/VertxInternal;
            0    4     2  atomicLong  Lcom/hazelcast/cp/IAtomicLong;
    MethodParameters:
            Name  Flags
      vertx       
      atomicLong  

  public io.vertx.core.Future<java.lang.Long> get();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
         0: .line 40
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter.atomicLong:Lcom/hazelcast/cp/IAtomicLong;
            invokeinterface com.hazelcast.cp.IAtomicLong.getAsync:()Ljava/util/concurrent/CompletionStage;
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            invokestatic io.vertx.core.Future.fromCompletionStage:(Ljava/util/concurrent/CompletionStage;Lio/vertx/core/Context;)Lio/vertx/core/Future;
            areturn
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastCounter;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Long;>;

  public io.vertx.core.Future<java.lang.Long> incrementAndGet();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
         0: .line 45
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter.atomicLong:Lcom/hazelcast/cp/IAtomicLong;
            invokeinterface com.hazelcast.cp.IAtomicLong.incrementAndGetAsync:()Ljava/util/concurrent/CompletionStage;
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            invokestatic io.vertx.core.Future.fromCompletionStage:(Ljava/util/concurrent/CompletionStage;Lio/vertx/core/Context;)Lio/vertx/core/Future;
            areturn
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastCounter;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Long;>;

  public io.vertx.core.Future<java.lang.Long> getAndIncrement();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
         0: .line 50
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter.atomicLong:Lcom/hazelcast/cp/IAtomicLong;
            invokeinterface com.hazelcast.cp.IAtomicLong.getAndIncrementAsync:()Ljava/util/concurrent/CompletionStage;
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            invokestatic io.vertx.core.Future.fromCompletionStage:(Ljava/util/concurrent/CompletionStage;Lio/vertx/core/Context;)Lio/vertx/core/Future;
            areturn
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastCounter;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Long;>;

  public io.vertx.core.Future<java.lang.Long> decrementAndGet();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
         0: .line 55
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter.atomicLong:Lcom/hazelcast/cp/IAtomicLong;
            invokeinterface com.hazelcast.cp.IAtomicLong.decrementAndGetAsync:()Ljava/util/concurrent/CompletionStage;
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            invokestatic io.vertx.core.Future.fromCompletionStage:(Ljava/util/concurrent/CompletionStage;Lio/vertx/core/Context;)Lio/vertx/core/Future;
            areturn
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastCounter;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Long;>;

  public io.vertx.core.Future<java.lang.Long> addAndGet(long);
    descriptor: (J)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
        start local 1 // long value
         0: .line 60
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter.atomicLong:Lcom/hazelcast/cp/IAtomicLong;
            lload 1 /* value */
            invokeinterface com.hazelcast.cp.IAtomicLong.addAndGetAsync:(J)Ljava/util/concurrent/CompletionStage;
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            invokestatic io.vertx.core.Future.fromCompletionStage:(Ljava/util/concurrent/CompletionStage;Lio/vertx/core/Context;)Lio/vertx/core/Future;
            areturn
        end local 1 // long value
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastCounter;
            0    1     1  value  J
    Signature: (J)Lio/vertx/core/Future<Ljava/lang/Long;>;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.core.Future<java.lang.Long> getAndAdd(long);
    descriptor: (J)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
        start local 1 // long value
         0: .line 65
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter.atomicLong:Lcom/hazelcast/cp/IAtomicLong;
            lload 1 /* value */
            invokeinterface com.hazelcast.cp.IAtomicLong.getAndAddAsync:(J)Ljava/util/concurrent/CompletionStage;
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            invokestatic io.vertx.core.Future.fromCompletionStage:(Ljava/util/concurrent/CompletionStage;Lio/vertx/core/Context;)Lio/vertx/core/Future;
            areturn
        end local 1 // long value
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastCounter;
            0    1     1  value  J
    Signature: (J)Lio/vertx/core/Future<Ljava/lang/Long;>;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.core.Future<java.lang.Boolean> compareAndSet(long, long);
    descriptor: (JJ)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
        start local 1 // long expected
        start local 3 // long value
         0: .line 70
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter.atomicLong:Lcom/hazelcast/cp/IAtomicLong;
            lload 1 /* expected */
            lload 3 /* value */
            invokeinterface com.hazelcast.cp.IAtomicLong.compareAndSetAsync:(JJ)Ljava/util/concurrent/CompletionStage;
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            invokestatic io.vertx.core.Future.fromCompletionStage:(Ljava/util/concurrent/CompletionStage;Lio/vertx/core/Context;)Lio/vertx/core/Future;
            areturn
        end local 3 // long value
        end local 1 // long expected
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastCounter;
            0    1     1  expected  J
            0    1     3     value  J
    Signature: (JJ)Lio/vertx/core/Future<Ljava/lang/Boolean;>;
    MethodParameters:
          Name  Flags
      expected  
      value     

  public void get(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Long>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
        start local 1 // io.vertx.core.Handler resultHandler
         0: .line 75
            aload 1 /* resultHandler */
            ldc "resultHandler"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 76
            aload 0 /* this */
            invokevirtual io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter.get:()Lio/vertx/core/Future;
            aload 1 /* resultHandler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         2: .line 77
            return
        end local 1 // io.vertx.core.Handler resultHandler
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastCounter;
            0    3     1  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Long;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Long;>;>;)V
    MethodParameters:
               Name  Flags
      resultHandler  

  public void incrementAndGet(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Long>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
        start local 1 // io.vertx.core.Handler resultHandler
         0: .line 81
            aload 1 /* resultHandler */
            ldc "resultHandler"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 82
            aload 0 /* this */
            invokevirtual io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter.incrementAndGet:()Lio/vertx/core/Future;
            aload 1 /* resultHandler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         2: .line 83
            return
        end local 1 // io.vertx.core.Handler resultHandler
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastCounter;
            0    3     1  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Long;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Long;>;>;)V
    MethodParameters:
               Name  Flags
      resultHandler  

  public void getAndIncrement(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Long>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
        start local 1 // io.vertx.core.Handler resultHandler
         0: .line 87
            aload 1 /* resultHandler */
            ldc "resultHandler"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 88
            aload 0 /* this */
            invokevirtual io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter.getAndIncrement:()Lio/vertx/core/Future;
            aload 1 /* resultHandler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         2: .line 89
            return
        end local 1 // io.vertx.core.Handler resultHandler
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastCounter;
            0    3     1  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Long;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Long;>;>;)V
    MethodParameters:
               Name  Flags
      resultHandler  

  public void decrementAndGet(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Long>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
        start local 1 // io.vertx.core.Handler resultHandler
         0: .line 93
            aload 1 /* resultHandler */
            ldc "resultHandler"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 94
            aload 0 /* this */
            invokevirtual io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter.decrementAndGet:()Lio/vertx/core/Future;
            aload 1 /* resultHandler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         2: .line 95
            return
        end local 1 // io.vertx.core.Handler resultHandler
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastCounter;
            0    3     1  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Long;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Long;>;>;)V
    MethodParameters:
               Name  Flags
      resultHandler  

  public void addAndGet(long, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Long>>);
    descriptor: (JLio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
        start local 1 // long value
        start local 3 // io.vertx.core.Handler resultHandler
         0: .line 99
            aload 3 /* resultHandler */
            ldc "resultHandler"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 100
            aload 0 /* this */
            lload 1 /* value */
            invokevirtual io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter.addAndGet:(J)Lio/vertx/core/Future;
            aload 3 /* resultHandler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         2: .line 101
            return
        end local 3 // io.vertx.core.Handler resultHandler
        end local 1 // long value
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastCounter;
            0    3     1          value  J
            0    3     3  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Long;>;>;
    Signature: (JLio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Long;>;>;)V
    MethodParameters:
               Name  Flags
      value          
      resultHandler  

  public void getAndAdd(long, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Long>>);
    descriptor: (JLio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
        start local 1 // long value
        start local 3 // io.vertx.core.Handler resultHandler
         0: .line 105
            aload 3 /* resultHandler */
            ldc "resultHandler"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 106
            aload 0 /* this */
            lload 1 /* value */
            invokevirtual io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter.getAndAdd:(J)Lio/vertx/core/Future;
            aload 3 /* resultHandler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         2: .line 107
            return
        end local 3 // io.vertx.core.Handler resultHandler
        end local 1 // long value
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastCounter;
            0    3     1          value  J
            0    3     3  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Long;>;>;
    Signature: (JLio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Long;>;>;)V
    MethodParameters:
               Name  Flags
      value          
      resultHandler  

  public void compareAndSet(long, long, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Boolean>>);
    descriptor: (JJLio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
        start local 1 // long expected
        start local 3 // long value
        start local 5 // io.vertx.core.Handler resultHandler
         0: .line 111
            aload 5 /* resultHandler */
            ldc "resultHandler"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 112
            aload 0 /* this */
            lload 1 /* expected */
            lload 3 /* value */
            invokevirtual io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter.compareAndSet:(JJ)Lio/vertx/core/Future;
            aload 5 /* resultHandler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         2: .line 113
            return
        end local 5 // io.vertx.core.Handler resultHandler
        end local 3 // long value
        end local 1 // long expected
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastCounter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastCounter;
            0    3     1       expected  J
            0    3     3          value  J
            0    3     5  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Boolean;>;>;
    Signature: (JJLio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Boolean;>;>;)V
    MethodParameters:
               Name  Flags
      expected       
      value          
      resultHandler  
}
SourceFile: "HazelcastCounter.java"