Package com.lmax.disruptor.support

Examples of com.lmax.disruptor.support.FizzBuzzEntry


        long start = System.currentTimeMillis();

        for (long i = 0; i < ITERATIONS; i++)
        {
            FizzBuzzEntry entry = ringBuffer.nextEntry();
            entry.setValue(i);
            ringBuffer.commit(entry);
        }

        final long expectedSequence = ringBuffer.getCursor();
        while (batchConsumerFizzBuzz.getSequence() < expectedSequence)
View Full Code Here

TOP

Related Classes of com.lmax.disruptor.support.FizzBuzzEntry

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.