com.github.rholder.moar.concurrent.QueueingStrategies Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of moar-concurrent Show documentation
Show all versions of moar-concurrent Show documentation
This module contains a collection of useful builders and concurrency classes to assist in modeling complex or overly tweakable concurrent processing pipelines.
package com.github.rholder.moar.concurrent;
/**
* This is a helper class for instantiating available QueueingStrategy's.
*
* @author rholder
*/
public class QueueingStrategies {
/**
* Construct a new {@link HeapQueueingStrategy} with the given parameters.
*
* For example, (0.85, 5000, 10000) translates to when 85% of heap is in
* use, start exponentially delaying additional enqueues up to a max of
* 5000 ms, garbage collecting after every 10000 dequeues to ensure that
*
* @param percentOfHeapBeforeFlowControl the percentage of the heap that must be available before the
* queue begins to start delaying addition operations
* @param maxDelay the maximum amount of time to delay an addition operation in
* milliseconds
* @param dequeueHint after this many dequeue operations, signal the JVM to run a
* garbage collection
*/
public static QueueingStrategy newHeapQueueingStrategy(double percentOfHeapBeforeFlowControl,
long maxDelay,
long dequeueHint) {
return new HeapQueueingStrategy(percentOfHeapBeforeFlowControl, maxDelay, dequeueHint);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy