public class io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl implements io.vertx.ext.web.sstore.SessionStore, io.vertx.ext.web.sstore.ClusteredSessionStore
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl
  super_class: java.lang.Object
{
  private static final java.lang.String DEFAULT_SESSION_MAP_NAME;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "vertx-web.sessions"

  private static final long DEFAULT_RETRY_TIMEOUT;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 5000

  private io.vertx.core.Vertx vertx;
    descriptor: Lio/vertx/core/Vertx;
    flags: (0x0002) ACC_PRIVATE

  private io.vertx.ext.auth.PRNG random;
    descriptor: Lio/vertx/ext/auth/PRNG;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String sessionMapName;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

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

  private volatile io.vertx.core.shareddata.AsyncMap<java.lang.String, io.vertx.ext.web.Session> sessionMap;
    descriptor: Lio/vertx/core/shareddata/AsyncMap;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE
    Signature: Lio/vertx/core/shareddata/AsyncMap<Ljava/lang/String;Lio/vertx/ext/web/Session;>;

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
         0: .line 34
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/sstore/impl/ClusteredSessionStoreImpl;

  public io.vertx.ext.web.sstore.SessionStore init(io.vertx.core.Vertx, io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/core/json/JsonObject;)Lio/vertx/ext/web/sstore/SessionStore;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // io.vertx.core.json.JsonObject options
         0: .line 57
            aload 0 /* this */
            aload 1 /* vertx */
            putfield io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl.vertx:Lio/vertx/core/Vertx;
         1: .line 58
            aload 0 /* this */
            aload 2 /* options */
            ldc "mapName"
            ldc "vertx-web.sessions"
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            putfield io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl.sessionMapName:Ljava/lang/String;
         2: .line 59
            aload 0 /* this */
            aload 2 /* options */
            ldc "retryTimeout"
            ldc 5000
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            invokevirtual io.vertx.core.json.JsonObject.getLong:(Ljava/lang/String;Ljava/lang/Long;)Ljava/lang/Long;
            invokevirtual java.lang.Long.longValue:()J
            putfield io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl.retryTimeout:J
         3: .line 60
            aload 0 /* this */
            new io.vertx.ext.auth.PRNG
            dup
            aload 1 /* vertx */
            invokespecial io.vertx.ext.auth.PRNG.<init>:(Lio/vertx/core/Vertx;)V
            putfield io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl.random:Lio/vertx/ext/auth/PRNG;
         4: .line 62
            aload 0 /* this */
            areturn
        end local 2 // io.vertx.core.json.JsonObject options
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lio/vertx/ext/web/sstore/impl/ClusteredSessionStoreImpl;
            0    5     1    vertx  Lio/vertx/core/Vertx;
            0    5     2  options  Lio/vertx/core/json/JsonObject;
    MethodParameters:
         Name  Flags
      vertx    
      options  

  public long retryTimeout();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
         0: .line 67
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl.retryTimeout:J
            lreturn
        end local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/sstore/impl/ClusteredSessionStoreImpl;

  public io.vertx.ext.web.Session createSession(long);
    descriptor: (J)Lio/vertx/ext/web/Session;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
        start local 1 // long timeout
         0: .line 72
            new io.vertx.ext.web.sstore.impl.SharedDataSessionImpl
            dup
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl.random:Lio/vertx/ext/auth/PRNG;
            lload 1 /* timeout */
            bipush 16
            invokespecial io.vertx.ext.web.sstore.impl.SharedDataSessionImpl.<init>:(Lio/vertx/ext/auth/PRNG;JI)V
            areturn
        end local 1 // long timeout
        end local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/ext/web/sstore/impl/ClusteredSessionStoreImpl;
            0    1     1  timeout  J
    MethodParameters:
         Name  Flags
      timeout  

  public io.vertx.ext.web.Session createSession(long, int);
    descriptor: (JI)Lio/vertx/ext/web/Session;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
        start local 1 // long timeout
        start local 3 // int length
         0: .line 77
            new io.vertx.ext.web.sstore.impl.SharedDataSessionImpl
            dup
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl.random:Lio/vertx/ext/auth/PRNG;
            lload 1 /* timeout */
            iload 3 /* length */
            invokespecial io.vertx.ext.web.sstore.impl.SharedDataSessionImpl.<init>:(Lio/vertx/ext/auth/PRNG;JI)V
            areturn
        end local 3 // int length
        end local 1 // long timeout
        end local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/ext/web/sstore/impl/ClusteredSessionStoreImpl;
            0    1     1  timeout  J
            0    1     3   length  I
    MethodParameters:
         Name  Flags
      timeout  
      length   

  public void get(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.web.Session>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
        start local 1 // java.lang.String id
        start local 2 // io.vertx.core.Handler resultHandler
         0: .line 82
            aload 0 /* this */
            aload 0 /* this */
            aload 1 /* id */
            aload 2 /* resultHandler */
            invokedynamic handle(Lio/vertx/ext/web/sstore/impl/ClusteredSessionStoreImpl;Ljava/lang/String;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/ext/web/sstore/impl/ClusteredSessionStoreImpl.lambda$0(Ljava/lang/String;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl.getMap:(Lio/vertx/core/Handler;)V
         1: .line 99
            return
        end local 2 // io.vertx.core.Handler resultHandler
        end local 1 // java.lang.String id
        end local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/vertx/ext/web/sstore/impl/ClusteredSessionStoreImpl;
            0    2     1             id  Ljava/lang/String;
            0    2     2  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/web/Session;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/web/Session;>;>;)V
    MethodParameters:
               Name  Flags
      id             
      resultHandler  

  public void delete(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
        start local 1 // java.lang.String id
        start local 2 // io.vertx.core.Handler resultHandler
         0: .line 103
            aload 0 /* this */
            aload 1 /* id */
            aload 2 /* resultHandler */
            invokedynamic handle(Ljava/lang/String;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/ext/web/sstore/impl/ClusteredSessionStoreImpl.lambda$2(Ljava/lang/String;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl.getMap:(Lio/vertx/core/Handler;)V
         1: .line 116
            return
        end local 2 // io.vertx.core.Handler resultHandler
        end local 1 // java.lang.String id
        end local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/vertx/ext/web/sstore/impl/ClusteredSessionStoreImpl;
            0    2     1             id  Ljava/lang/String;
            0    2     2  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
               Name  Flags
      id             
      resultHandler  

  public void put(io.vertx.ext.web.Session, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/ext/web/Session;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
        start local 1 // io.vertx.ext.web.Session session
        start local 2 // io.vertx.core.Handler resultHandler
         0: .line 120
            aload 0 /* this */
            aload 1 /* session */
            aload 2 /* resultHandler */
            invokedynamic handle(Lio/vertx/ext/web/Session;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/ext/web/sstore/impl/ClusteredSessionStoreImpl.lambda$4(Lio/vertx/ext/web/Session;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl.getMap:(Lio/vertx/core/Handler;)V
         1: .line 157
            return
        end local 2 // io.vertx.core.Handler resultHandler
        end local 1 // io.vertx.ext.web.Session session
        end local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/vertx/ext/web/sstore/impl/ClusteredSessionStoreImpl;
            0    2     1        session  Lio/vertx/ext/web/Session;
            0    2     2  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/ext/web/Session;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
               Name  Flags
      session        
      resultHandler  

  public void clear(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
        start local 1 // io.vertx.core.Handler resultHandler
         0: .line 161
            aload 0 /* this */
            aload 1 /* resultHandler */
            invokedynamic handle(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/ext/web/sstore/impl/ClusteredSessionStoreImpl.lambda$7(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl.getMap:(Lio/vertx/core/Handler;)V
         1: .line 174
            return
        end local 1 // io.vertx.core.Handler resultHandler
        end local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/vertx/ext/web/sstore/impl/ClusteredSessionStoreImpl;
            0    2     1  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
               Name  Flags
      resultHandler  

  public void size(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Integer>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
        start local 1 // io.vertx.core.Handler resultHandler
         0: .line 178
            aload 0 /* this */
            aload 1 /* resultHandler */
            invokedynamic handle(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/ext/web/sstore/impl/ClusteredSessionStoreImpl.lambda$9(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl.getMap:(Lio/vertx/core/Handler;)V
         1: .line 191
            return
        end local 1 // io.vertx.core.Handler resultHandler
        end local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/vertx/ext/web/sstore/impl/ClusteredSessionStoreImpl;
            0    2     1  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Integer;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Integer;>;>;)V
    MethodParameters:
               Name  Flags
      resultHandler  

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
         0: .line 196
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl.random:Lio/vertx/ext/auth/PRNG;
            invokevirtual io.vertx.ext.auth.PRNG.close:()V
         1: .line 197
            return
        end local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/web/sstore/impl/ClusteredSessionStoreImpl;

  private void getMap(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.shareddata.AsyncMap<java.lang.String, io.vertx.ext.web.Session>>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
        start local 1 // io.vertx.core.Handler resultHandler
         0: .line 200
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl.sessionMap:Lio/vertx/core/shareddata/AsyncMap;
            ifnonnull 3
         1: .line 201
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl.vertx:Lio/vertx/core/Vertx;
            invokeinterface io.vertx.core.Vertx.sharedData:()Lio/vertx/core/shareddata/SharedData;
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl.sessionMapName:Ljava/lang/String;
            aload 0 /* this */
            aload 1 /* resultHandler */
            invokedynamic handle(Lio/vertx/ext/web/sstore/impl/ClusteredSessionStoreImpl;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/ext/web/sstore/impl/ClusteredSessionStoreImpl.lambda$11(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.shareddata.SharedData.getClusterWideMap:(Ljava/lang/String;Lio/vertx/core/Handler;)V
         2: .line 209
            goto 4
         3: .line 210
      StackMap locals:
      StackMap stack:
            aload 1 /* resultHandler */
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl.sessionMap:Lio/vertx/core/shareddata/AsyncMap;
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         4: .line 212
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.Handler resultHandler
        end local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lio/vertx/ext/web/sstore/impl/ClusteredSessionStoreImpl;
            0    5     1  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/shareddata/AsyncMap<Ljava/lang/String;Lio/vertx/ext/web/Session;>;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/shareddata/AsyncMap<Ljava/lang/String;Lio/vertx/ext/web/Session;>;>;>;)V
    MethodParameters:
               Name  Flags
      resultHandler  

  private void lambda$0(java.lang.String, io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
        start local 3 // io.vertx.core.AsyncResult res
         0: .line 83
            aload 3 /* res */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 3
         1: .line 84
            aload 3 /* res */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.core.shareddata.AsyncMap
            aload 1
            aload 0 /* this */
            aload 2
            invokedynamic handle(Lio/vertx/ext/web/sstore/impl/ClusteredSessionStoreImpl;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/ext/web/sstore/impl/ClusteredSessionStoreImpl.lambda$1(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.shareddata.AsyncMap.get:(Ljava/lang/Object;Lio/vertx/core/Handler;)V
         2: .line 95
            goto 4
         3: .line 96
      StackMap locals:
      StackMap stack:
            aload 2
            aload 3 /* res */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         4: .line 98
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.vertx.core.AsyncResult res
        end local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/ext/web/sstore/impl/ClusteredSessionStoreImpl;
            0    5     3   res  Lio/vertx/core/AsyncResult<Lio/vertx/core/shareddata/AsyncMap<Ljava/lang/String;Lio/vertx/ext/web/Session;>;>;

  private static void lambda$2(java.lang.String, io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 2 // io.vertx.core.AsyncResult res
         0: .line 104
            aload 2 /* res */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 3
         1: .line 105
            aload 2 /* res */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.core.shareddata.AsyncMap
            aload 0
            aload 1
            invokedynamic handle(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/ext/web/sstore/impl/ClusteredSessionStoreImpl.lambda$3(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.shareddata.AsyncMap.remove:(Ljava/lang/Object;Lio/vertx/core/Handler;)V
         2: .line 112
            goto 4
         3: .line 113
      StackMap locals:
      StackMap stack:
            aload 1
            aload 2 /* res */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         4: .line 115
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.AsyncResult res
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     2   res  Lio/vertx/core/AsyncResult<Lio/vertx/core/shareddata/AsyncMap<Ljava/lang/String;Lio/vertx/ext/web/Session;>;>;

  private static void lambda$4(io.vertx.ext.web.Session, io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/ext/web/Session;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=5, locals=3, args_size=3
        start local 2 // io.vertx.core.AsyncResult res
         0: .line 121
            aload 2 /* res */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 3
         1: .line 123
            aload 2 /* res */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.core.shareddata.AsyncMap
            aload 0
            invokeinterface io.vertx.ext.web.Session.id:()Ljava/lang/String;
            aload 0
            aload 1
            aload 2 /* res */
            invokedynamic handle(Lio/vertx/ext/web/Session;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/ext/web/sstore/impl/ClusteredSessionStoreImpl.lambda$5(Lio/vertx/ext/web/Session;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.shareddata.AsyncMap.get:(Ljava/lang/Object;Lio/vertx/core/Handler;)V
         2: .line 153
            goto 4
         3: .line 154
      StackMap locals:
      StackMap stack:
            aload 1
            aload 2 /* res */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         4: .line 156
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.AsyncResult res
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     2   res  Lio/vertx/core/AsyncResult<Lio/vertx/core/shareddata/AsyncMap<Ljava/lang/String;Lio/vertx/ext/web/Session;>;>;

  private static void lambda$7(io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.core.AsyncResult res
         0: .line 162
            aload 1 /* res */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 3
         1: .line 163
            aload 1 /* res */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.core.shareddata.AsyncMap
            aload 0
            invokedynamic handle(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/ext/web/sstore/impl/ClusteredSessionStoreImpl.lambda$8(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.shareddata.AsyncMap.clear:(Lio/vertx/core/Handler;)V
         2: .line 170
            goto 4
         3: .line 171
      StackMap locals:
      StackMap stack:
            aload 0
            aload 1 /* res */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         4: .line 173
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.AsyncResult res
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     1   res  Lio/vertx/core/AsyncResult<Lio/vertx/core/shareddata/AsyncMap<Ljava/lang/String;Lio/vertx/ext/web/Session;>;>;

  private static void lambda$9(io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.core.AsyncResult res
         0: .line 179
            aload 1 /* res */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 3
         1: .line 180
            aload 1 /* res */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.core.shareddata.AsyncMap
            aload 0
            invokedynamic handle(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/ext/web/sstore/impl/ClusteredSessionStoreImpl.lambda$10(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.shareddata.AsyncMap.size:(Lio/vertx/core/Handler;)V
         2: .line 187
            goto 4
         3: .line 188
      StackMap locals:
      StackMap stack:
            aload 0
            aload 1 /* res */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         4: .line 190
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.AsyncResult res
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     1   res  Lio/vertx/core/AsyncResult<Lio/vertx/core/shareddata/AsyncMap<Ljava/lang/String;Lio/vertx/ext/web/Session;>;>;

  private void lambda$11(io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
        start local 2 // io.vertx.core.AsyncResult res
         0: .line 202
            aload 2 /* res */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 4
         1: .line 203
            aload 0 /* this */
            aload 2 /* res */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.core.shareddata.AsyncMap
            putfield io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl.sessionMap:Lio/vertx/core/shareddata/AsyncMap;
         2: .line 204
            aload 1
            aload 2 /* res */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.core.shareddata.AsyncMap
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         3: .line 205
            goto 5
         4: .line 206
      StackMap locals:
      StackMap stack:
            aload 1
            aload 2 /* res */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         5: .line 208
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.AsyncResult res
        end local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/ext/web/sstore/impl/ClusteredSessionStoreImpl;
            0    6     2   res  Lio/vertx/core/AsyncResult<Lio/vertx/core/shareddata/AsyncMap<Ljava/lang/String;Lio/vertx/ext/web/Session;>;>;

  private void lambda$1(io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
        start local 2 // io.vertx.core.AsyncResult res2
         0: .line 85
            aload 2 /* res2 */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 6
         1: .line 86
            aload 2 /* res2 */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.ext.web.sstore.AbstractSession
            astore 3 /* session */
        start local 3 // io.vertx.ext.web.sstore.AbstractSession session
         2: .line 87
            aload 3 /* session */
            ifnull 4
         3: .line 88
            aload 3 /* session */
            aload 0 /* this */
            getfield io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl.random:Lio/vertx/ext/auth/PRNG;
            invokevirtual io.vertx.ext.web.sstore.AbstractSession.setPRNG:(Lio/vertx/ext/auth/PRNG;)V
         4: .line 90
      StackMap locals: io.vertx.ext.web.sstore.AbstractSession
      StackMap stack:
            aload 1
            aload 2 /* res2 */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.ext.web.Session
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        end local 3 // io.vertx.ext.web.sstore.AbstractSession session
         5: .line 91
            goto 7
         6: .line 92
      StackMap locals:
      StackMap stack:
            aload 1
            aload 2 /* res2 */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         7: .line 94
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.AsyncResult res2
        end local 0 // io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lio/vertx/ext/web/sstore/impl/ClusteredSessionStoreImpl;
            0    8     2     res2  Lio/vertx/core/AsyncResult<Lio/vertx/ext/web/Session;>;
            2    5     3  session  Lio/vertx/ext/web/sstore/AbstractSession;

  private static void lambda$3(io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.core.AsyncResult res2
         0: .line 106
            aload 1 /* res2 */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 3
         1: .line 107
            aload 0
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 108
            goto 4
         3: .line 109
      StackMap locals:
      StackMap stack:
            aload 0
            aload 1 /* res2 */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         4: .line 111
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.AsyncResult res2
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     1  res2  Lio/vertx/core/AsyncResult<Lio/vertx/ext/web/Session;>;

  private static void lambda$5(io.vertx.ext.web.Session, io.vertx.core.Handler, io.vertx.core.AsyncResult, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/ext/web/Session;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=6, locals=6, args_size=4
        start local 3 // io.vertx.core.AsyncResult old
         0: .line 125
            aload 0
            checkcast io.vertx.ext.web.sstore.AbstractSession
            astore 5 /* newSession */
        start local 5 // io.vertx.ext.web.sstore.AbstractSession newSession
         1: .line 127
            aload 3 /* old */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 4
         2: .line 128
            aload 3 /* old */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.ext.web.sstore.AbstractSession
            astore 4 /* oldSession */
        start local 4 // io.vertx.ext.web.sstore.AbstractSession oldSession
         3: .line 129
            goto 5
        end local 4 // io.vertx.ext.web.sstore.AbstractSession oldSession
         4: .line 131
      StackMap locals: io.vertx.ext.web.Session io.vertx.core.Handler io.vertx.core.AsyncResult io.vertx.core.AsyncResult top io.vertx.ext.web.sstore.AbstractSession
      StackMap stack:
            aconst_null
            astore 4 /* oldSession */
        start local 4 // io.vertx.ext.web.sstore.AbstractSession oldSession
         5: .line 134
      StackMap locals: io.vertx.ext.web.Session io.vertx.core.Handler io.vertx.core.AsyncResult io.vertx.core.AsyncResult io.vertx.ext.web.sstore.AbstractSession io.vertx.ext.web.sstore.AbstractSession
      StackMap stack:
            aload 4 /* oldSession */
            ifnull 9
         6: .line 136
            aload 4 /* oldSession */
            invokevirtual io.vertx.ext.web.sstore.AbstractSession.version:()I
            aload 5 /* newSession */
            invokevirtual io.vertx.ext.web.sstore.AbstractSession.version:()I
            if_icmpeq 9
         7: .line 137
            aload 1
            ldc "Version mismatch"
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/String;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         8: .line 138
            return
         9: .line 143
      StackMap locals:
      StackMap stack:
            aload 5 /* newSession */
            invokevirtual io.vertx.ext.web.sstore.AbstractSession.incrementVersion:()V
        10: .line 145
            aload 2
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.core.shareddata.AsyncMap
            aload 0
            invokeinterface io.vertx.ext.web.Session.id:()Ljava/lang/String;
            aload 0
            aload 0
            invokeinterface io.vertx.ext.web.Session.timeout:()J
            aload 1
            invokedynamic handle(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/ext/web/sstore/impl/ClusteredSessionStoreImpl.lambda$6(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.shareddata.AsyncMap.put:(Ljava/lang/Object;Ljava/lang/Object;JLio/vertx/core/Handler;)V
        end local 5 // io.vertx.ext.web.sstore.AbstractSession newSession
        end local 4 // io.vertx.ext.web.sstore.AbstractSession oldSession
        11: .line 152
            return
        end local 3 // io.vertx.core.AsyncResult old
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   12     3         old  Lio/vertx/core/AsyncResult<Lio/vertx/ext/web/Session;>;
            3    4     4  oldSession  Lio/vertx/ext/web/sstore/AbstractSession;
            5   11     4  oldSession  Lio/vertx/ext/web/sstore/AbstractSession;
            1   11     5  newSession  Lio/vertx/ext/web/sstore/AbstractSession;

  private static void lambda$8(io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.core.AsyncResult res2
         0: .line 164
            aload 1 /* res2 */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 3
         1: .line 165
            aload 0
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 166
            goto 4
         3: .line 167
      StackMap locals:
      StackMap stack:
            aload 0
            aload 1 /* res2 */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         4: .line 169
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.AsyncResult res2
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     1  res2  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;

  private static void lambda$10(io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.core.AsyncResult res2
         0: .line 181
            aload 1 /* res2 */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 3
         1: .line 182
            aload 0
            aload 1 /* res2 */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 183
            goto 4
         3: .line 184
      StackMap locals:
      StackMap stack:
            aload 0
            aload 1 /* res2 */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         4: .line 186
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.AsyncResult res2
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     1  res2  Lio/vertx/core/AsyncResult<Ljava/lang/Integer;>;

  private static void lambda$6(io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.core.AsyncResult res2
         0: .line 146
            aload 1 /* res2 */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 3
         1: .line 147
            aload 0
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 148
            goto 4
         3: .line 149
      StackMap locals:
      StackMap stack:
            aload 0
            aload 1 /* res2 */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         4: .line 151
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.AsyncResult res2
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     1  res2  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;
}
SourceFile: "ClusteredSessionStoreImpl.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles