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

com.jd.blockchain.utils.DataIterator Maven / Gradle / Ivy

package com.jd.blockchain.utils;

/**
 * 数据迭代器;
 * 
 * @author huanghaiquan
 *
 * @param 
 * @param 
 */
public interface DataIterator {

	void skip(long count);
	
	DataEntry next();

	DataEntry[] next(int count);
	
	boolean hasNext();
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy