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

com.tinkerpop.blueprints.CloseableIterable Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy