Package net.openhft.affinity

Examples of net.openhft.affinity.AffinityLock


    static final int RUN_TIME = 30;
    static final long START_TIME = System.currentTimeMillis();

    // TODO test passes but is under development.
    public static void main(String... ignored) throws IOException {
        AffinityLock lock = AffinityLock.acquireCore();
        File file = File.createTempFile("testSHMLatency", "deleteme");
//        File file = new File("testSHMLatency.deleteme");
        file.delete();
        SharedHashMap<LongValue, LongValue> countersMap = new SharedHashMapBuilder()
                .entries(KEYS)
View Full Code Here

TOP

Related Classes of net.openhft.affinity.AffinityLock

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.