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

com.sproutigy.commons.async.collections.ReactiveIterator Maven / Gradle / Ivy

There is a newer version: 2.0
Show newest version
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