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

stream.io.IndexStream Maven / Gradle / Ivy

There is a newer version: 1.0.10
Show newest version
package stream.io;

import stream.Data;
import stream.data.DataFactory;

public class IndexStream extends AbstractStream {

	private long index = 0;

	@Override
	public Data readNext() throws Exception {
		Data d = DataFactory.create();
		d.put("index", index++);
		return d;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy