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

org.reactfx.AwaitingEventStream Maven / Gradle / Ivy

There is a newer version: 2.0-M5
Show newest version
package org.reactfx;

import javafx.beans.value.ObservableBooleanValue;

/**
 * An event stream that indicates whether there is a pending event that can
 * be expected to be emitted in the future.
 *
 * 

A stream may indicate a pending event while it is awaiting a timer or * completion of an asynchronous task. */ public interface AwaitingEventStream extends EventStream { /** * Indicates whether there is a pending event that will be emitted by this * stream in the (near) future. This may mean that an event has occurred * that causes this stream to emit an event with some delay, e.g. waiting * for a timer or completion of an asynchronous task. */ ObservableBooleanValue pendingProperty(); boolean isPending(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy