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

com.github.thorbenkuck.network.stream.Subscription Maven / Gradle / Ivy

The newest version!
package com.github.thorbenkuck.network.stream;

import java.util.List;

public interface Subscription {

	Subscription onError(ExceptionalConsumer consumer);

	boolean isCanceled();

	void cancel();

	void setOnCancel(Runnable runnable);

	List drainEncountered();

	boolean hasEncounteredErrors();

	void preventErrorBuffer();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy