com.tinkerpop.blueprints.CloseableIterable Maven / Gradle / Ivy
package com.tinkerpop.blueprints;
import java.io.Closeable;
/**
* A CloseableIterable is required where it is necessary to deallocate resources from an Iterable.
*
* @author Marko A. Rodriguez (http://markorodriguez.com)
*/
public interface CloseableIterable extends Iterable, Closeable {
/**
* Release the resources of the iterator.
*/
public void close();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy