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

Examples of net.openhft.chronicle.sandbox.queue.locators.shared.Index


                    @NotNull final BytesDataLocator<E, BYTES> bytesDataLocator,
                    @NotNull final ByteBuffer byteBuffer) {
        this.sliceProvider = sliceProvider;
        this.offsetProvider = offsetProvider;

        final Index index = new Index() {

            @Override
            public void setNextLocation(int index) {
                ringIndex.setReadLocation(index);
            }
View Full Code Here


                    @NotNull final OffsetProvider offsetProvider,
                    @NotNull final SocketChannelProvider socketChannelProvider,
                    @NotNull final ByteBuffer byteBuffer) {


        final Index index = new Index() {

            @Override
            public void setNextLocation(int index) {
                ringIndex.setWriterLocation(index);
            }
View Full Code Here

TOP

Related Classes of net.openhft.chronicle.sandbox.queue.locators.shared.Index

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.