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

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

There is a newer version: 0.4.0
Show newest version
package com.github.thorbenkuck.network.stream;

public interface WritableEventStream extends DataStream {

	void close();

	void pause();

    void publishError(Throwable throwable);

	void unPause();

	boolean isPaused();

	boolean isDisabled();

	void setDisabled(boolean disabled);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy