Created
August 21, 2013 02:30
-
-
Save nida-001/6289761 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.concurrent.ConcurrentHashMap; | |
public class ConcurrentHashMultiMap<K, V> { | |
private final ConcurrentHashMap<K, ConcurrentHashMap<V, Boolean>> map = new ConcurrentHashMap<>(); | |
public void put(K key, V value) { | |
map.putIfAbsent(key, new ConcurrentHashMap<V, Boolean>()); | |
map.get(key).put(value, true); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment