Class VertxLocalMapStore<K,​V>

  • All Implemented Interfaces:
    org.pac4j.core.store.Store<K,​V>

    public class VertxLocalMapStore<K,​V>
    extends VertxMapStoreBase
    implements org.pac4j.core.store.Store<K,​V>
    Implementation of pac4j store based on vert.x LocalMap implementation. If the store is to be cluster-wide then the clustered map implementation should be used instead.
    • Constructor Detail

      • VertxLocalMapStore

        public VertxLocalMapStore​(io.vertx.core.Vertx vertx)
    • Method Detail

      • get

        public V get​(K key)
        Specified by:
        get in interface org.pac4j.core.store.Store<K,​V>
      • set

        public void set​(K key,
                        V value)
        Specified by:
        set in interface org.pac4j.core.store.Store<K,​V>
      • remove

        public void remove​(K key)
        Specified by:
        remove in interface org.pac4j.core.store.Store<K,​V>