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

com.github.tix320.kiwi.api.reactive.observable.Subscription Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
package com.github.tix320.kiwi.api.reactive.observable;

/**
 * @author Tigran Sargsyan on 21-Feb-19
 */
public interface Subscription {

	/**
	 * Check, if this subscription completed.
	 *
	 * @return true, if completed, false otherwise.
	 */
	boolean isCompleted();

	/**
	 * Unsubscribe from observable.
	 */
	void unsubscribe();

	Subscription EMPTY = new Subscription() {
		@Override
		public boolean isCompleted() {
			return true;
		}

		@Override
		public void unsubscribe() {

		}
	};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy