Package edu.wpi.grip.core.observables
-
Interface Summary Interface Description Observable<T> An observable wraps a value that, when changed, will notify listeners of the change.Observer<T> Observes changes to the value of anObservable
. -
Class Summary Class Description SimpleObservable<T> Default thread-unsafe implementation ofObservable
.SynchronizedObservable<T> A thread-safe implementation ofObservable
.