io.vproxy.pni.impl.ForceNoInlineConcurrentLongMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pni-api-jdk22 Show documentation
Show all versions of pni-api-jdk22 Show documentation
panama native interface pni-api-jdk22
The newest version!
package io.vproxy.pni.impl;
import java.util.concurrent.ConcurrentMap;
public class ForceNoInlineConcurrentLongMap {
private final ConcurrentMap map;
public ForceNoInlineConcurrentLongMap(ConcurrentMap map) {
this.map = map;
}
public V get(long key) {
return map.get(key);
}
}