
net.anotheria.util.queue.IQueueFactory Maven / Gradle / Ivy
package net.anotheria.util.queue;
/**
* A factory for a queue.
*
* @author lrosenberg
* @version $Id: $Id
*/
public interface IQueueFactory {
/**
* Creates a new queue of the given size.
*
* @param size a int.
* @return a {@link net.anotheria.util.queue.IQueue} object.
*/
IQueue createQueue(int size);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy