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

com.couchbase.client.core.deps.org.jctools.util.SpscLookAheadUtil Maven / Gradle / Ivy

There is a newer version: 3.7.2
Show newest version
package com.couchbase.client.core.deps.org.jctools.util;

@InternalAPI
public class SpscLookAheadUtil
{
    public static final int MAX_LOOK_AHEAD_STEP = Integer.getInteger("jctools.spsc.max.lookahead.step", 4096);

    public static int computeLookAheadStep(int actualCapacity)
    {
        return Math.min(actualCapacity / 4, MAX_LOOK_AHEAD_STEP);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy