com.tinkerpop.blueprints.CloseableIterable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blueprints-core Show documentation
Show all versions of blueprints-core Show documentation
Core interfaces and utilities for Blueprints
package com.tinkerpop.blueprints;
/**
* 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 {
/**
* Release the resources of the iterator.
*/
public void close();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy