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

com.github.segmentio.safeclient.policy.queue.DenyAfterCapacityPolicy Maven / Gradle / Ivy

package com.github.segmentio.safeclient.policy.queue;

public class DenyAfterCapacityPolicy 
	implements IQueueDenyPolicy {

	private int threshold;
	
	public DenyAfterCapacityPolicy(int threshold) {
		this.threshold = threshold;
	}
	
	public boolean canQueue(int currentSize) {
		return currentSize <= threshold;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy