com.sproutigy.commons.async.collections.ReactiveIterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of async Show documentation
Show all versions of async Show documentation
Async Programming Toolkit for Java
package com.sproutigy.commons.async.collections;
/**
* @author LukeAheadNET
*/
public interface ReactiveIterator {
void onNext(T element);
void onFailure(Throwable cause);
void onComplete();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy