eu.lucaventuri.common.ConcurrentHashSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fibry Show documentation
Show all versions of fibry Show documentation
The first Java Actor System supporting fibers from Project Loom
package eu.lucaventuri.common;
import java.util.Collections;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
public final class ConcurrentHashSet {
private ConcurrentHashSet() {}
public static Set build() {
return Collections.newSetFromMap(new ConcurrentHashMap<>());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy