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

org.hyperledger.fabric.client.CloseableIterator Maven / Gradle / Ivy

/*
 * Copyright 2021 IBM All Rights Reserved.
 *
 * SPDX-License-Identifier: Apache-2.0
 */

package org.hyperledger.fabric.client;

import java.util.Iterator;

/**
 * An iterator that can be closed when the consumer does not want to read any more elements, freeing up resources that
 * may be held by the iterator.
 * 

Note that iteration may throw {@link GatewayRuntimeException} if the gRPC connection fails.

* @param The type of elements returned by this iterator. */ public interface CloseableIterator extends Iterator, AutoCloseable { @Override void close(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy