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

com.github.rholder.moar.concurrent.QueueingStrategy Maven / Gradle / Ivy

Go to download

This module contains a collection of useful builders and concurrency classes to assist in modeling complex or overly tweakable concurrent processing pipelines.

There is a newer version: 1.0.3
Show newest version
package com.github.rholder.moar.concurrent;

/**
 * Implementations of this class perform actions before and after adding or
 * removing items from a queue (i.e. as a mechanism for slowing or speeding up
 * subsequent adding based on some calculated heuristic).
 *
 * @author rholder
 * @param  the type of elements held in the target queue
 */
public interface QueueingStrategy {

    /**
     * Perform this action before adding the given value to the queue.
     *
     * @param value
     */
    public void onBeforeAdd(E value);

    /**
     * Perform this action after adding a value to the queue.
     */
    public void onAfterAdd();

    /**
     * Perform this action before removing a value from the queue.
     */
    public void onBeforeRemove();

    /**
     * Perform this action before removing the given value from the queue.
     *
     * @param value
     */
    public void onAfterRemove(E value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy