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

hu.akarnokd.reactive.pc.RsPcReceive Maven / Gradle / Ivy

The newest version!
package hu.akarnokd.reactive.pc;

public interface RsPcReceive {
    void onNew(long streamId, String function);
    
    void onNext(long streamId, Object o);

    void onError(long streamId, String reason);

    void onError(long streamId, Throwable e);
    
    void onComplete(long streamId);
    
    void onCancel(long streamId, String reason);
    
    void onRequested(long streamId, long n);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy