![JAR search and dependency download from the Maven repository](/logo.png)
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