Package net.openhft.chronicle.sandbox.queue.locators.local

Examples of net.openhft.chronicle.sandbox.queue.locators.local.LocalDataLocator


        final DataLocator dataLocator;
        final RingIndex ringIndex;

        if (type == Type.LOCAL) {
            ringIndex = new LocalRingIndex();
            dataLocator = new LocalDataLocator(capacity);

        } else if (type == Type.SHARED) {

            final String tmp = System.getProperty("java.io.tmpdir");
            final File file = new File(tmp + fileName);
View Full Code Here

TOP

Related Classes of net.openhft.chronicle.sandbox.queue.locators.local.LocalDataLocator

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.