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

org.badiff.Queueable Maven / Gradle / Ivy

package org.badiff;

import java.io.IOException;

import org.badiff.q.OpQueue;

/**
 * An object which can provide an {@link OpQueue}
 * @author robin
 *
 */
public interface Queueable {
	/**
	 * Return this object's operations.  This queue
	 * be {@link OpQueue#poll()}'d from but not {@link OpQueue#offer(Op)}'d to.
	 * @return
	 * @throws IOException
	 */
	public OpQueue queue() throws IOException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy