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

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

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

import java.io.IOException;

public interface RsPcSend {
    void sendNew(long streamId, String function);
    
    void sendCancel(long streamId, String reason);
    
    void sendNext(long streamId, Object o) throws IOException;
    
    void sendError(long streamId, Throwable e);
    
    void sendComplete(long streamId);
    
    void sendRequested(long streamId, long n);
    
    boolean isClosed();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy