Package org.vertx.java.core.shareddata.impl

Examples of org.vertx.java.core.shareddata.impl.SharedMap


   */
  public <K, V> ConcurrentMap<K, V> getMap(String name) {
    SharedMap<K, V> map = (SharedMap<K, V>) maps.get(name);
    if (map == null) {
      map = new SharedMap<>();
      SharedMap prev = maps.putIfAbsent(name, map);
      if (prev != null) {
        map = prev;
      }
    }
    return map;
View Full Code Here

TOP

Related Classes of org.vertx.java.core.shareddata.impl.SharedMap

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.