- java.lang.Object
-
- com.iamsoft.util.ui.javafx.StatusMonitor.ProgressUpdate<T>
-
- Enclosing class:
- StatusMonitor
public static class StatusMonitor.ProgressUpdate<T> extends Object
-
-
Constructor Summary
Constructors Constructor Description ProgressUpdate(javafx.beans.value.WritableValue<T> pValueProperty)
ProgressUpdate(javafx.beans.value.WritableValue<T> pValueProperty, boolean pCoalesce)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isValueAdjusting()
void
updateValue(T pValue)
Updates the value property.
-
-
-
Method Detail
-
isValueAdjusting
public boolean isValueAdjusting()
-
updateValue
public void updateValue(T pValue)
Updates the value property. This method is safe to be called from any thread, but note that if the specified value is not immutable, an additional synchronization of the values might be needed.
-
-