All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vproxy.pni.impl.ForceNoInlineConcurrentLongMap Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy