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

org.reactfx.Suspender Maven / Gradle / Ivy

package org.reactfx;

import org.reactfx.util.Experimental;

/**
 * Suspender is an object capable of suspending another suspendable object.
 *
 * @param  type of the suspendable object this suspender suspends.
 */
@Experimental
public interface Suspender {
    S getSuspendable();
}