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

co.paralleluniverse.strands.SuspendableIterator Maven / Gradle / Ivy

package co.paralleluniverse.strands;

import co.paralleluniverse.fibers.Suspendable;

import java.util.Iterator;

public interface SuspendableIterator extends Iterator {
	@Override
	@Suspendable
	T next();

	@Override
	@Suspendable
	boolean hasNext();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy