public class io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap<K, V> implements io.vertx.core.spi.cluster.AsyncMultiMap<K, V>, com.hazelcast.core.EntryListener<K, V>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap
  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.core.MultiMap<K, V> map;
    descriptor: Lcom/hazelcast/core/MultiMap;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lcom/hazelcast/core/MultiMap<TK;TV;>;

  private final io.vertx.core.impl.TaskQueue taskQueue;
    descriptor: Lio/vertx/core/impl/TaskQueue;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.util.concurrent.ConcurrentMap<K, io.vertx.spi.cluster.hazelcast.impl.ChoosableSet<V>> cache;
    descriptor: Ljava/util/concurrent/ConcurrentMap;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/concurrent/ConcurrentMap<TK;Lio/vertx/spi/cluster/hazelcast/impl/ChoosableSet<TV;>;>;

  public void <init>(io.vertx.core.Vertx, com.hazelcast.core.MultiMap<K, V>);
    descriptor: (Lio/vertx/core/Vertx;Lcom/hazelcast/core/MultiMap;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // com.hazelcast.core.MultiMap map
         0: .line 62
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 47
            aload 0 /* this */
            new io.vertx.core.impl.TaskQueue
            dup
            invokespecial io.vertx.core.impl.TaskQueue.<init>:()V
            putfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.taskQueue:Lio/vertx/core/impl/TaskQueue;
         2: .line 60
            aload 0 /* this */
            new java.util.concurrent.ConcurrentHashMap
            dup
            invokespecial java.util.concurrent.ConcurrentHashMap.<init>:()V
            putfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.cache:Ljava/util/concurrent/ConcurrentMap;
         3: .line 63
            aload 0 /* this */
            aload 1 /* vertx */
            checkcast io.vertx.core.impl.VertxInternal
            putfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.vertx:Lio/vertx/core/impl/VertxInternal;
         4: .line 64
            aload 0 /* this */
            aload 2 /* map */
            putfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.map:Lcom/hazelcast/core/MultiMap;
         5: .line 65
            aload 2 /* map */
            aload 0 /* this */
            iconst_1
            invokeinterface com.hazelcast.core.MultiMap.addEntryListener:(Lcom/hazelcast/core/EntryListener;Z)Ljava/lang/String;
            pop
         6: .line 66
            return
        end local 2 // com.hazelcast.core.MultiMap map
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap<TK;TV;>;
            0    7     1  vertx  Lio/vertx/core/Vertx;
            0    7     2    map  Lcom/hazelcast/core/MultiMap<TK;TV;>;
    Signature: (Lio/vertx/core/Vertx;Lcom/hazelcast/core/MultiMap<TK;TV;>;)V
    MethodParameters:
       Name  Flags
      vertx  
      map    

  public void removeAllForValue(V, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Ljava/lang/Object;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
        start local 1 // java.lang.Object val
        start local 2 // io.vertx.core.Handler completionHandler
         0: .line 70
            aload 0 /* this */
            aload 1 /* val */
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic test(Ljava/lang/Object;)Ljava/util/function/Predicate;
              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;)Z
                  java/lang/Object.equals(Ljava/lang/Object;)Z (5)
                  (Ljava/lang/Object;)Z
            aload 2 /* completionHandler */
            invokevirtual io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.removeAllMatching:(Ljava/util/function/Predicate;Lio/vertx/core/Handler;)V
         1: .line 71
            return
        end local 2 // io.vertx.core.Handler completionHandler
        end local 1 // java.lang.Object val
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    2     0               this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap<TK;TV;>;
            0    2     1                val  TV;
            0    2     2  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (TV;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
                   Name  Flags
      val                
      completionHandler  

  public void removeAllMatching(java.util.function.Predicate<V>, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Ljava/util/function/Predicate;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
        start local 1 // java.util.function.Predicate p
        start local 2 // io.vertx.core.Handler completionHandler
         0: .line 75
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            aload 0 /* this */
            aload 1 /* p */
            invokedynamic handle(Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap;Ljava/util/function/Predicate;)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/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap.lambda$1(Ljava/util/function/Predicate;Lio/vertx/core/Promise;)V (7)
                  (Lio/vertx/core/Promise;)V
         1: .line 83
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.taskQueue:Lio/vertx/core/impl/TaskQueue;
            aload 2 /* completionHandler */
         2: .line 75
            invokeinterface io.vertx.core.impl.ContextInternal.executeBlocking:(Lio/vertx/core/Handler;Lio/vertx/core/impl/TaskQueue;Lio/vertx/core/Handler;)V
         3: .line 84
            return
        end local 2 // io.vertx.core.Handler completionHandler
        end local 1 // java.util.function.Predicate p
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    4     0               this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap<TK;TV;>;
            0    4     1                  p  Ljava/util/function/Predicate<TV;>;
            0    4     2  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Ljava/util/function/Predicate<TV;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
                   Name  Flags
      p                  
      completionHandler  

  public void add(K, V, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
        start local 1 // java.lang.Object k
        start local 2 // java.lang.Object v
        start local 3 // io.vertx.core.Handler completionHandler
         0: .line 88
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            aload 0 /* this */
            aload 1 /* k */
            aload 2 /* v */
            invokedynamic handle(Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap;Ljava/lang/Object;Ljava/lang/Object;)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/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap.lambda$2(Ljava/lang/Object;Ljava/lang/Object;Lio/vertx/core/Promise;)V (7)
                  (Lio/vertx/core/Promise;)V
         1: .line 91
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.taskQueue:Lio/vertx/core/impl/TaskQueue;
            aload 3 /* completionHandler */
         2: .line 88
            invokeinterface io.vertx.core.impl.ContextInternal.executeBlocking:(Lio/vertx/core/Handler;Lio/vertx/core/impl/TaskQueue;Lio/vertx/core/Handler;)V
         3: .line 92
            return
        end local 3 // io.vertx.core.Handler completionHandler
        end local 2 // java.lang.Object v
        end local 1 // java.lang.Object k
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    4     0               this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap<TK;TV;>;
            0    4     1                  k  TK;
            0    4     2                  v  TV;
            0    4     3  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (TK;TV;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
                   Name  Flags
      k                  
      v                  
      completionHandler  

  public void get(K, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.spi.cluster.ChoosableIterable<V>>>);
    descriptor: (Ljava/lang/Object;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=3
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
        start local 1 // java.lang.Object k
        start local 2 // io.vertx.core.Handler resultHandler
         0: .line 96
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            astore 3 /* context */
        start local 3 // io.vertx.core.impl.ContextInternal context
         1: .line 98
            aload 3 /* context */
            invokeinterface io.vertx.core.impl.ContextInternal.contextData:()Ljava/util/concurrent/ConcurrentMap;
            aload 0 /* this */
            invokedynamic apply()Ljava/util/function/Function;
              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;)Ljava/lang/Object;
                  io/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap.lambda$3(Ljava/lang/Object;)Ljava/lang/Object; (6)
                  (Ljava/lang/Object;)Ljava/lang/Object;
            invokeinterface java.util.concurrent.ConcurrentMap.computeIfAbsent:(Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object;
            checkcast java.util.Queue
            astore 4 /* getRequests */
        start local 4 // java.util.Queue getRequests
         2: .line 99
            aload 4 /* getRequests */
            dup
            astore 5
            monitorenter
         3: .line 100
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.cache:Ljava/util/concurrent/ConcurrentMap;
            aload 1 /* k */
            invokeinterface java.util.concurrent.ConcurrentMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.vertx.spi.cluster.hazelcast.impl.ChoosableSet
            astore 6 /* entries */
        start local 6 // io.vertx.spi.cluster.hazelcast.impl.ChoosableSet entries
         4: .line 101
            aload 6 /* entries */
            ifnull 7
            aload 6 /* entries */
            invokevirtual io.vertx.spi.cluster.hazelcast.impl.ChoosableSet.isInitialised:()Z
            ifeq 7
            aload 4 /* getRequests */
            invokeinterface java.util.Queue.isEmpty:()Z
            ifeq 7
         5: .line 102
            aload 3 /* context */
            aload 2 /* resultHandler */
            aload 6 /* entries */
            invokedynamic handle(Lio/vertx/core/Handler;Lio/vertx/spi/cluster/hazelcast/impl/ChoosableSet;)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/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap.lambda$4(Lio/vertx/core/Handler;Lio/vertx/spi/cluster/hazelcast/impl/ChoosableSet;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.impl.ContextInternal.runOnContext:(Lio/vertx/core/Handler;)V
         6: .line 105
            goto 10
         7: .line 106
      StackMap locals: io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap java.lang.Object io.vertx.core.Handler io.vertx.core.impl.ContextInternal java.util.Queue java.util.Queue io.vertx.spi.cluster.hazelcast.impl.ChoosableSet
      StackMap stack:
            aload 4 /* getRequests */
            new io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap$GetRequest
            dup
            aload 1 /* k */
            aload 2 /* resultHandler */
            invokespecial io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap$GetRequest.<init>:(Ljava/lang/Object;Lio/vertx/core/Handler;)V
            invokeinterface java.util.Queue.add:(Ljava/lang/Object;)Z
            pop
         8: .line 107
            aload 4 /* getRequests */
            invokeinterface java.util.Queue.size:()I
            iconst_1
            if_icmpne 10
         9: .line 108
            aload 0 /* this */
            aload 3 /* context */
            aload 4 /* getRequests */
            invokevirtual io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.dequeueGet:(Lio/vertx/core/impl/ContextInternal;Ljava/util/Queue;)V
        end local 6 // io.vertx.spi.cluster.hazelcast.impl.ChoosableSet entries
        10: .line 99
      StackMap locals:
      StackMap stack:
            aload 5
            monitorexit
        11: goto 14
      StackMap locals:
      StackMap stack: java.lang.Throwable
        12: aload 5
            monitorexit
        13: athrow
        14: .line 112
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.util.Queue getRequests
        end local 3 // io.vertx.core.impl.ContextInternal context
        end local 2 // io.vertx.core.Handler resultHandler
        end local 1 // java.lang.Object k
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   15     0           this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap<TK;TV;>;
            0   15     1              k  TK;
            0   15     2  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/spi/cluster/ChoosableIterable<TV;>;>;>;
            1   15     3        context  Lio/vertx/core/impl/ContextInternal;
            2   15     4    getRequests  Ljava/util/Queue<Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap$GetRequest<TK;TV;>;>;
            4   10     6        entries  Lio/vertx/spi/cluster/hazelcast/impl/ChoosableSet<TV;>;
      Exception table:
        from    to  target  type
           3    11      12  any
          12    13      12  any
    Signature: (TK;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/spi/cluster/ChoosableIterable<TV;>;>;>;)V
    MethodParameters:
               Name  Flags
      k              
      resultHandler  

  private void dequeueGet(io.vertx.core.impl.ContextInternal, java.util.Queue<io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap$GetRequest<K, V>>);
    descriptor: (Lio/vertx/core/impl/ContextInternal;Ljava/util/Queue;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=6, args_size=3
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
        start local 1 // io.vertx.core.impl.ContextInternal context
        start local 2 // java.util.Queue getRequests
         0: .line 117
      StackMap locals:
      StackMap stack:
            aload 2 /* getRequests */
            invokeinterface java.util.Queue.peek:()Ljava/lang/Object;
            checkcast io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap$GetRequest
            astore 3 /* getRequest */
        start local 3 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap$GetRequest getRequest
         1: .line 118
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.cache:Ljava/util/concurrent/ConcurrentMap;
            aload 3 /* getRequest */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap$GetRequest.key:Ljava/lang/Object;
            invokeinterface java.util.concurrent.ConcurrentMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.vertx.spi.cluster.hazelcast.impl.ChoosableSet
            astore 4 /* entries */
        start local 4 // io.vertx.spi.cluster.hazelcast.impl.ChoosableSet entries
         2: .line 119
            aload 4 /* entries */
            ifnull 8
            aload 4 /* entries */
            invokevirtual io.vertx.spi.cluster.hazelcast.impl.ChoosableSet.isInitialised:()Z
            ifeq 8
         3: .line 120
            aload 3 /* getRequest */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap$GetRequest.handler:Lio/vertx/core/Handler;
            astore 5 /* handler */
        start local 5 // io.vertx.core.Handler handler
         4: .line 121
            aload 1 /* context */
            aload 5 /* handler */
            aload 4 /* entries */
            invokedynamic handle(Lio/vertx/core/Handler;Lio/vertx/spi/cluster/hazelcast/impl/ChoosableSet;)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/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap.lambda$5(Lio/vertx/core/Handler;Lio/vertx/spi/cluster/hazelcast/impl/ChoosableSet;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.impl.ContextInternal.runOnContext:(Lio/vertx/core/Handler;)V
         5: .line 124
            aload 2 /* getRequests */
            invokeinterface java.util.Queue.remove:()Ljava/lang/Object;
            pop
         6: .line 125
            aload 2 /* getRequests */
            invokeinterface java.util.Queue.isEmpty:()Z
            ifeq 0
         7: .line 126
            return
        end local 5 // io.vertx.core.Handler handler
        end local 4 // io.vertx.spi.cluster.hazelcast.impl.ChoosableSet entries
         8: .line 132
      StackMap locals: io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap$GetRequest
      StackMap stack:
            aload 3 /* getRequest */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap$GetRequest.key:Ljava/lang/Object;
            astore 4 /* key */
        start local 4 // java.lang.Object key
         9: .line 133
            aload 3 /* getRequest */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap$GetRequest.handler:Lio/vertx/core/Handler;
            astore 5 /* handler */
        start local 5 // io.vertx.core.Handler handler
        10: .line 134
            aload 1 /* context */
            aload 0 /* this */
            aload 4 /* key */
            invokedynamic handle(Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap;Ljava/lang/Object;)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/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap.lambda$6(Ljava/lang/Object;Lio/vertx/core/Promise;)V (7)
                  (Lio/vertx/core/Promise;)V
        11: .line 153
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.taskQueue:Lio/vertx/core/impl/TaskQueue;
            aload 0 /* this */
            aload 2 /* getRequests */
            aload 1 /* context */
            aload 5 /* handler */
            invokedynamic handle(Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap;Ljava/util/Queue;Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Handler;)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/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap.lambda$7(Ljava/util/Queue;Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
        12: .line 134
            invokeinterface io.vertx.core.impl.ContextInternal.executeBlocking:(Lio/vertx/core/Handler;Lio/vertx/core/impl/TaskQueue;Lio/vertx/core/Handler;)V
        13: .line 164
            return
        end local 5 // io.vertx.core.Handler handler
        end local 4 // java.lang.Object key
        end local 3 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap$GetRequest getRequest
        end local 2 // java.util.Queue getRequests
        end local 1 // io.vertx.core.impl.ContextInternal context
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   14     0         this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap<TK;TV;>;
            0   14     1      context  Lio/vertx/core/impl/ContextInternal;
            0   14     2  getRequests  Ljava/util/Queue<Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap$GetRequest<TK;TV;>;>;
            1   14     3   getRequest  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap$GetRequest<TK;TV;>;
            2    8     4      entries  Lio/vertx/spi/cluster/hazelcast/impl/ChoosableSet<TV;>;
            4    8     5      handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/spi/cluster/ChoosableIterable<TV;>;>;>;
            9   14     4          key  TK;
           10   14     5      handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/spi/cluster/ChoosableIterable<TV;>;>;>;
    Signature: (Lio/vertx/core/impl/ContextInternal;Ljava/util/Queue<Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap$GetRequest<TK;TV;>;>;)V
    MethodParameters:
             Name  Flags
      context      
      getRequests  

  public void remove(K, V, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Boolean>>);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
        start local 1 // java.lang.Object k
        start local 2 // java.lang.Object v
        start local 3 // io.vertx.core.Handler completionHandler
         0: .line 168
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            aload 0 /* this */
            aload 1 /* k */
            aload 2 /* v */
            invokedynamic handle(Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap;Ljava/lang/Object;Ljava/lang/Object;)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/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap.lambda$9(Ljava/lang/Object;Ljava/lang/Object;Lio/vertx/core/Promise;)V (7)
                  (Lio/vertx/core/Promise;)V
         1: .line 170
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.taskQueue:Lio/vertx/core/impl/TaskQueue;
            aload 3 /* completionHandler */
         2: .line 168
            invokeinterface io.vertx.core.impl.ContextInternal.executeBlocking:(Lio/vertx/core/Handler;Lio/vertx/core/impl/TaskQueue;Lio/vertx/core/Handler;)V
         3: .line 171
            return
        end local 3 // io.vertx.core.Handler completionHandler
        end local 2 // java.lang.Object v
        end local 1 // java.lang.Object k
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    4     0               this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap<TK;TV;>;
            0    4     1                  k  TK;
            0    4     2                  v  TV;
            0    4     3  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Boolean;>;>;
    Signature: (TK;TV;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Boolean;>;>;)V
    MethodParameters:
                   Name  Flags
      k                  
      v                  
      completionHandler  

  public void entryAdded(com.hazelcast.core.EntryEvent<K, V>);
    descriptor: (Lcom/hazelcast/core/EntryEvent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
        start local 1 // com.hazelcast.core.EntryEvent entry
         0: .line 175
            aload 0 /* this */
            aload 1 /* entry */
            invokevirtual com.hazelcast.core.EntryEvent.getKey:()Ljava/lang/Object;
            aload 1 /* entry */
            invokevirtual com.hazelcast.core.EntryEvent.getValue:()Ljava/lang/Object;
            invokevirtual io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.addEntry:(Ljava/lang/Object;Ljava/lang/Object;)V
         1: .line 176
            return
        end local 1 // com.hazelcast.core.EntryEvent entry
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap<TK;TV;>;
            0    2     1  entry  Lcom/hazelcast/core/EntryEvent<TK;TV;>;
    Signature: (Lcom/hazelcast/core/EntryEvent<TK;TV;>;)V
    MethodParameters:
       Name  Flags
      entry  

  private void addEntry(K, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
        start local 1 // java.lang.Object k
        start local 2 // java.lang.Object v
         0: .line 179
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.cache:Ljava/util/concurrent/ConcurrentMap;
            aload 1 /* k */
            invokeinterface java.util.concurrent.ConcurrentMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.vertx.spi.cluster.hazelcast.impl.ChoosableSet
            astore 3 /* entries */
        start local 3 // io.vertx.spi.cluster.hazelcast.impl.ChoosableSet entries
         1: .line 180
            aload 3 /* entries */
            ifnonnull 6
         2: .line 181
            new io.vertx.spi.cluster.hazelcast.impl.ChoosableSet
            dup
            iconst_1
            invokespecial io.vertx.spi.cluster.hazelcast.impl.ChoosableSet.<init>:(I)V
            astore 3 /* entries */
         3: .line 182
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.cache:Ljava/util/concurrent/ConcurrentMap;
            aload 1 /* k */
            aload 3 /* entries */
            invokeinterface java.util.concurrent.ConcurrentMap.putIfAbsent:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.vertx.spi.cluster.hazelcast.impl.ChoosableSet
            astore 4 /* prev */
        start local 4 // io.vertx.spi.cluster.hazelcast.impl.ChoosableSet prev
         4: .line 183
            aload 4 /* prev */
            ifnull 6
         5: .line 184
            aload 4 /* prev */
            astore 3 /* entries */
        end local 4 // io.vertx.spi.cluster.hazelcast.impl.ChoosableSet prev
         6: .line 187
      StackMap locals: io.vertx.spi.cluster.hazelcast.impl.ChoosableSet
      StackMap stack:
            aload 3 /* entries */
            aload 2 /* v */
            invokevirtual io.vertx.spi.cluster.hazelcast.impl.ChoosableSet.add:(Ljava/lang/Object;)V
         7: .line 188
            return
        end local 3 // io.vertx.spi.cluster.hazelcast.impl.ChoosableSet entries
        end local 2 // java.lang.Object v
        end local 1 // java.lang.Object k
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap<TK;TV;>;
            0    8     1        k  TK;
            0    8     2        v  TV;
            1    8     3  entries  Lio/vertx/spi/cluster/hazelcast/impl/ChoosableSet<TV;>;
            4    6     4     prev  Lio/vertx/spi/cluster/hazelcast/impl/ChoosableSet<TV;>;
    Signature: (TK;TV;)V
    MethodParameters:
      Name  Flags
      k     
      v     

  public void entryRemoved(com.hazelcast.core.EntryEvent<K, V>);
    descriptor: (Lcom/hazelcast/core/EntryEvent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
        start local 1 // com.hazelcast.core.EntryEvent entry
         0: .line 192
            aload 0 /* this */
            aload 1 /* entry */
            invokevirtual com.hazelcast.core.EntryEvent.getKey:()Ljava/lang/Object;
            aload 1 /* entry */
            invokevirtual com.hazelcast.core.EntryEvent.getOldValue:()Ljava/lang/Object;
            invokevirtual io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.removeEntry:(Ljava/lang/Object;Ljava/lang/Object;)V
         1: .line 193
            return
        end local 1 // com.hazelcast.core.EntryEvent entry
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap<TK;TV;>;
            0    2     1  entry  Lcom/hazelcast/core/EntryEvent<TK;TV;>;
    Signature: (Lcom/hazelcast/core/EntryEvent<TK;TV;>;)V
    MethodParameters:
       Name  Flags
      entry  

  private void removeEntry(K, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
        start local 1 // java.lang.Object k
        start local 2 // java.lang.Object v
         0: .line 196
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.cache:Ljava/util/concurrent/ConcurrentMap;
            aload 1 /* k */
            invokeinterface java.util.concurrent.ConcurrentMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.vertx.spi.cluster.hazelcast.impl.ChoosableSet
            astore 3 /* entries */
        start local 3 // io.vertx.spi.cluster.hazelcast.impl.ChoosableSet entries
         1: .line 197
            aload 3 /* entries */
            ifnull 6
         2: .line 200
            aload 2 /* v */
            ifnull 6
         3: .line 201
            aload 3 /* entries */
            aload 2 /* v */
            invokevirtual io.vertx.spi.cluster.hazelcast.impl.ChoosableSet.remove:(Ljava/lang/Object;)V
         4: .line 202
            aload 3 /* entries */
            invokevirtual io.vertx.spi.cluster.hazelcast.impl.ChoosableSet.isEmpty:()Z
            ifeq 6
         5: .line 203
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.cache:Ljava/util/concurrent/ConcurrentMap;
            aload 1 /* k */
            invokeinterface java.util.concurrent.ConcurrentMap.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         6: .line 207
      StackMap locals: io.vertx.spi.cluster.hazelcast.impl.ChoosableSet
      StackMap stack:
            return
        end local 3 // io.vertx.spi.cluster.hazelcast.impl.ChoosableSet entries
        end local 2 // java.lang.Object v
        end local 1 // java.lang.Object k
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap<TK;TV;>;
            0    7     1        k  TK;
            0    7     2        v  TV;
            1    7     3  entries  Lio/vertx/spi/cluster/hazelcast/impl/ChoosableSet<TV;>;
    Signature: (TK;TV;)V
    MethodParameters:
      Name  Flags
      k     
      v     

  public void entryUpdated(com.hazelcast.core.EntryEvent<K, V>);
    descriptor: (Lcom/hazelcast/core/EntryEvent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
        start local 1 // com.hazelcast.core.EntryEvent entry
         0: .line 211
            aload 1 /* entry */
            invokevirtual com.hazelcast.core.EntryEvent.getKey:()Ljava/lang/Object;
            astore 2 /* k */
        start local 2 // java.lang.Object k
         1: .line 212
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.cache:Ljava/util/concurrent/ConcurrentMap;
            aload 2 /* k */
            invokeinterface java.util.concurrent.ConcurrentMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.vertx.spi.cluster.hazelcast.impl.ChoosableSet
            astore 3 /* entries */
        start local 3 // io.vertx.spi.cluster.hazelcast.impl.ChoosableSet entries
         2: .line 213
            aload 3 /* entries */
            ifnull 4
         3: .line 214
            aload 3 /* entries */
            aload 1 /* entry */
            invokevirtual com.hazelcast.core.EntryEvent.getValue:()Ljava/lang/Object;
            invokevirtual io.vertx.spi.cluster.hazelcast.impl.ChoosableSet.add:(Ljava/lang/Object;)V
         4: .line 216
      StackMap locals: java.lang.Object io.vertx.spi.cluster.hazelcast.impl.ChoosableSet
      StackMap stack:
            return
        end local 3 // io.vertx.spi.cluster.hazelcast.impl.ChoosableSet entries
        end local 2 // java.lang.Object k
        end local 1 // com.hazelcast.core.EntryEvent entry
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap<TK;TV;>;
            0    5     1    entry  Lcom/hazelcast/core/EntryEvent<TK;TV;>;
            1    5     2        k  TK;
            2    5     3  entries  Lio/vertx/spi/cluster/hazelcast/impl/ChoosableSet<TV;>;
    Signature: (Lcom/hazelcast/core/EntryEvent<TK;TV;>;)V
    MethodParameters:
       Name  Flags
      entry  

  public void entryEvicted(com.hazelcast.core.EntryEvent<K, V>);
    descriptor: (Lcom/hazelcast/core/EntryEvent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
        start local 1 // com.hazelcast.core.EntryEvent entry
         0: .line 220
            aload 0 /* this */
            aload 1 /* entry */
            invokevirtual io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.entryRemoved:(Lcom/hazelcast/core/EntryEvent;)V
         1: .line 221
            return
        end local 1 // com.hazelcast.core.EntryEvent entry
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap<TK;TV;>;
            0    2     1  entry  Lcom/hazelcast/core/EntryEvent<TK;TV;>;
    Signature: (Lcom/hazelcast/core/EntryEvent<TK;TV;>;)V
    MethodParameters:
       Name  Flags
      entry  

  public void mapEvicted(com.hazelcast.core.MapEvent);
    descriptor: (Lcom/hazelcast/core/MapEvent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
        start local 1 // com.hazelcast.core.MapEvent mapEvent
         0: .line 225
            aload 0 /* this */
            invokevirtual io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.clearCache:()V
         1: .line 226
            return
        end local 1 // com.hazelcast.core.MapEvent mapEvent
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap<TK;TV;>;
            0    2     1  mapEvent  Lcom/hazelcast/core/MapEvent;
    MethodParameters:
          Name  Flags
      mapEvent  

  public void mapCleared(com.hazelcast.core.MapEvent);
    descriptor: (Lcom/hazelcast/core/MapEvent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
        start local 1 // com.hazelcast.core.MapEvent mapEvent
         0: .line 230
            aload 0 /* this */
            invokevirtual io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.clearCache:()V
         1: .line 231
            return
        end local 1 // com.hazelcast.core.MapEvent mapEvent
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap<TK;TV;>;
            0    2     1  mapEvent  Lcom/hazelcast/core/MapEvent;
    MethodParameters:
          Name  Flags
      mapEvent  

  public void clearCache();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
         0: .line 234
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.cache:Ljava/util/concurrent/ConcurrentMap;
            invokeinterface java.util.concurrent.ConcurrentMap.clear:()V
         1: .line 235
            return
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap<TK;TV;>;

  private void lambda$1(java.util.function.Predicate, io.vertx.core.Promise);
    descriptor: (Ljava/util/function/Predicate;Lio/vertx/core/Promise;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
        start local 2 // io.vertx.core.Promise fut
         0: .line 76
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.map:Lcom/hazelcast/core/MultiMap;
            invokeinterface com.hazelcast.core.MultiMap.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap java.util.function.Predicate io.vertx.core.Promise top java.util.Iterator
      StackMap stack:
         1: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 3 /* entry */
        start local 3 // java.util.Map$Entry entry
         2: .line 77
            aload 3 /* entry */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            astore 5 /* v */
        start local 5 // java.lang.Object v
         3: .line 78
            aload 1
            aload 5 /* v */
            invokeinterface java.util.function.Predicate.test:(Ljava/lang/Object;)Z
            ifeq 5
         4: .line 79
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.map:Lcom/hazelcast/core/MultiMap;
            aload 3 /* entry */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            aload 5 /* v */
            invokeinterface com.hazelcast.core.MultiMap.remove:(Ljava/lang/Object;Ljava/lang/Object;)Z
            pop
        end local 5 // java.lang.Object v
        end local 3 // java.util.Map$Entry entry
         5: .line 76
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         6: .line 82
            aload 2 /* fut */
            invokeinterface io.vertx.core.Promise.complete:()V
         7: .line 83
            return
        end local 2 // io.vertx.core.Promise fut
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap<TK;TV;>;
            0    8     2    fut  Lio/vertx/core/Promise<Ljava/lang/Void;>;
            2    5     3  entry  Ljava/util/Map$Entry<TK;TV;>;
            3    5     5      v  TV;

  private void lambda$2(java.lang.Object, java.lang.Object, io.vertx.core.Promise);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Lio/vertx/core/Promise;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
        start local 3 // io.vertx.core.Promise fut
         0: .line 89
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.map:Lcom/hazelcast/core/MultiMap;
            aload 1
            aload 2
            invokestatic io.vertx.spi.cluster.hazelcast.impl.HazelcastClusterNodeInfo.convertClusterNodeInfo:(Ljava/lang/Object;)Ljava/lang/Object;
            invokeinterface com.hazelcast.core.MultiMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Z
            pop
         1: .line 90
            aload 3 /* fut */
            invokeinterface io.vertx.core.Promise.complete:()V
         2: .line 91
            return
        end local 3 // io.vertx.core.Promise fut
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap<TK;TV;>;
            0    3     3   fut  Lio/vertx/core/Promise<Ljava/lang/Void;>;

  private static java.lang.Object lambda$3(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.Object ctx
         0: .line 98
            new java.util.ArrayDeque
            dup
            invokespecial java.util.ArrayDeque.<init>:()V
            areturn
        end local 0 // java.lang.Object ctx
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   ctx  Ljava/lang/Object;

  private static void lambda$4(io.vertx.core.Handler, io.vertx.spi.cluster.hazelcast.impl.ChoosableSet, java.lang.Void);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/spi/cluster/hazelcast/impl/ChoosableSet;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 2 // java.lang.Void v
         0: .line 103
            aload 0
            aload 1
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         1: .line 104
            return
        end local 2 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     2     v  Ljava/lang/Void;

  private static void lambda$5(io.vertx.core.Handler, io.vertx.spi.cluster.hazelcast.impl.ChoosableSet, java.lang.Void);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/spi/cluster/hazelcast/impl/ChoosableSet;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 2 // java.lang.Void v
         0: .line 122
            aload 0
            aload 1
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         1: .line 123
            return
        end local 2 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     2     v  Ljava/lang/Void;

  private void lambda$6(java.lang.Object, io.vertx.core.Promise);
    descriptor: (Ljava/lang/Object;Lio/vertx/core/Promise;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=7, args_size=3
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
        start local 2 // io.vertx.core.Promise fut
         0: .line 135
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.map:Lcom/hazelcast/core/MultiMap;
            aload 1
            invokeinterface com.hazelcast.core.MultiMap.get:(Ljava/lang/Object;)Ljava/util/Collection;
            astore 3 /* entries */
        start local 3 // java.util.Collection entries
         1: .line 137
            aload 3 /* entries */
            ifnull 8
         2: .line 138
            new io.vertx.spi.cluster.hazelcast.impl.ChoosableSet
            dup
            aload 3 /* entries */
            invokeinterface java.util.Collection.size:()I
            invokespecial io.vertx.spi.cluster.hazelcast.impl.ChoosableSet.<init>:(I)V
            astore 4 /* sids */
        start local 4 // io.vertx.spi.cluster.hazelcast.impl.ChoosableSet sids
         3: .line 139
            aload 3 /* entries */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 6
            goto 6
      StackMap locals: io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap java.lang.Object io.vertx.core.Promise java.util.Collection io.vertx.spi.cluster.hazelcast.impl.ChoosableSet top java.util.Iterator
      StackMap stack:
         4: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Object
            astore 5 /* hid */
        start local 5 // java.lang.Object hid
         5: .line 140
            aload 4 /* sids */
            aload 5 /* hid */
            invokevirtual io.vertx.spi.cluster.hazelcast.impl.ChoosableSet.add:(Ljava/lang/Object;)V
        end local 5 // java.lang.Object hid
         6: .line 139
      StackMap locals:
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         7: .line 142
            goto 9
        end local 4 // io.vertx.spi.cluster.hazelcast.impl.ChoosableSet sids
         8: .line 143
      StackMap locals: io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap java.lang.Object io.vertx.core.Promise java.util.Collection
      StackMap stack:
            new io.vertx.spi.cluster.hazelcast.impl.ChoosableSet
            dup
            iconst_0
            invokespecial io.vertx.spi.cluster.hazelcast.impl.ChoosableSet.<init>:(I)V
            astore 4 /* sids */
        start local 4 // io.vertx.spi.cluster.hazelcast.impl.ChoosableSet sids
         9: .line 145
      StackMap locals: io.vertx.spi.cluster.hazelcast.impl.ChoosableSet
      StackMap stack:
            aload 4 /* sids */
            invokevirtual io.vertx.spi.cluster.hazelcast.impl.ChoosableSet.isEmpty:()Z
            ifeq 10
            aconst_null
            goto 11
      StackMap locals:
      StackMap stack:
        10: aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.cache:Ljava/util/concurrent/ConcurrentMap;
            aload 1
            aload 4 /* sids */
            invokeinterface java.util.concurrent.ConcurrentMap.putIfAbsent:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.vertx.spi.cluster.hazelcast.impl.ChoosableSet
      StackMap locals:
      StackMap stack: io.vertx.spi.cluster.hazelcast.impl.ChoosableSet
        11: astore 5 /* prev */
        start local 5 // io.vertx.spi.cluster.hazelcast.impl.ChoosableSet prev
        12: .line 146
            aload 5 /* prev */
            ifnull 15
        13: .line 148
            aload 5 /* prev */
            aload 4 /* sids */
            invokevirtual io.vertx.spi.cluster.hazelcast.impl.ChoosableSet.merge:(Lio/vertx/spi/cluster/hazelcast/impl/ChoosableSet;)V
        14: .line 149
            aload 5 /* prev */
            astore 4 /* sids */
        15: .line 151
      StackMap locals: io.vertx.spi.cluster.hazelcast.impl.ChoosableSet
      StackMap stack:
            aload 4 /* sids */
            invokevirtual io.vertx.spi.cluster.hazelcast.impl.ChoosableSet.setInitialised:()V
        16: .line 152
            aload 2 /* fut */
            aload 4 /* sids */
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
        end local 5 // io.vertx.spi.cluster.hazelcast.impl.ChoosableSet prev
        end local 4 // io.vertx.spi.cluster.hazelcast.impl.ChoosableSet sids
        end local 3 // java.util.Collection entries
        17: .line 153
            return
        end local 2 // io.vertx.core.Promise fut
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   18     0     this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap<TK;TV;>;
            0   18     2      fut  Lio/vertx/core/Promise<Lio/vertx/core/spi/cluster/ChoosableIterable<TV;>;>;
            1   17     3  entries  Ljava/util/Collection<TV;>;
            3    8     4     sids  Lio/vertx/spi/cluster/hazelcast/impl/ChoosableSet<TV;>;
            9   17     4     sids  Lio/vertx/spi/cluster/hazelcast/impl/ChoosableSet<TV;>;
            5    6     5      hid  TV;
           12   17     5     prev  Lio/vertx/spi/cluster/hazelcast/impl/ChoosableSet<TV;>;

  private void lambda$7(java.util.Queue, io.vertx.core.impl.ContextInternal, io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Ljava/util/Queue;Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=6, args_size=5
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
        start local 4 // io.vertx.core.AsyncResult res
         0: .line 154
            aload 1
            dup
            astore 5
            monitorenter
         1: .line 155
            aload 2
            aload 3
            aload 4 /* res */
            invokedynamic handle(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)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/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap.lambda$8(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.impl.ContextInternal.runOnContext:(Lio/vertx/core/Handler;)V
         2: .line 158
            aload 1
            invokeinterface java.util.Queue.remove:()Ljava/lang/Object;
            pop
         3: .line 159
            aload 1
            invokeinterface java.util.Queue.isEmpty:()Z
            ifne 5
         4: .line 160
            aload 0 /* this */
            aload 2
            aload 1
            invokevirtual io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.dequeueGet:(Lio/vertx/core/impl/ContextInternal;Ljava/util/Queue;)V
         5: .line 154
      StackMap locals: java.util.Queue
      StackMap stack:
            aload 5
            monitorexit
         6: goto 9
      StackMap locals:
      StackMap stack: java.lang.Throwable
         7: aload 5
            monitorexit
         8: athrow
         9: .line 163
      StackMap locals:
      StackMap stack:
            return
        end local 4 // io.vertx.core.AsyncResult res
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap<TK;TV;>;
            0   10     4   res  Lio/vertx/core/AsyncResult<Lio/vertx/core/spi/cluster/ChoosableIterable<TV;>;>;
      Exception table:
        from    to  target  type
           1     6       7  any
           7     8       7  any

  private void lambda$9(java.lang.Object, java.lang.Object, io.vertx.core.Promise);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Lio/vertx/core/Promise;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
        start local 3 // io.vertx.core.Promise fut
         0: .line 169
            aload 3 /* fut */
            aload 0 /* this */
            getfield io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap.map:Lcom/hazelcast/core/MultiMap;
            aload 1
            aload 2
            invokestatic io.vertx.spi.cluster.hazelcast.impl.HazelcastClusterNodeInfo.convertClusterNodeInfo:(Ljava/lang/Object;)Ljava/lang/Object;
            invokeinterface com.hazelcast.core.MultiMap.remove:(Ljava/lang/Object;Ljava/lang/Object;)Z
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
         1: .line 170
            return
        end local 3 // io.vertx.core.Promise fut
        end local 0 // io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/spi/cluster/hazelcast/impl/HazelcastAsyncMultiMap<TK;TV;>;
            0    2     3   fut  Lio/vertx/core/Promise<Ljava/lang/Boolean;>;

  private static void lambda$8(io.vertx.core.Handler, io.vertx.core.AsyncResult, java.lang.Void);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 2 // java.lang.Void v
         0: .line 156
            aload 0
            aload 1
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         1: .line 157
            return
        end local 2 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     2     v  Ljava/lang/Void;
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Ljava/lang/Object;Lio/vertx/core/spi/cluster/AsyncMultiMap<TK;TV;>;Lcom/hazelcast/core/EntryListener<TK;TV;>;
SourceFile: "HazelcastAsyncMultiMap.java"
NestMembers:
  io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap$GetRequest
InnerClasses:
  private GetRequest = io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap$GetRequest of io.vertx.spi.cluster.hazelcast.impl.HazelcastAsyncMultiMap
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public abstract Entry = java.util.Map$Entry of java.util.Map