Uses of Class
       com.machinezoo.hookless.ReactiveValue
     
      Packages that use ReactiveValue
     
     
     - 
        Uses of ReactiveValue in com.machinezoo.hooklessMethods in com.machinezoo.hookless that return ReactiveValueModifier and TypeMethodDescriptionstatic <T> ReactiveValue<T>Captures implicit reactive output of providedSupplierand returns it encapsulated in newReactiveValue.ReactiveStateMachine.output()ReactiveVariable.value()Reads the currentReactiveValuefrom thisReactiveVariableand sets up reactive dependency.Methods in com.machinezoo.hookless with parameters of type ReactiveValueModifier and TypeMethodDescriptionReactiveWorker.initial(ReactiveValue<T> value) static ReactiveStateMachine<Void>ReactiveStateMachine.run(ReactiveValue<Void> initial, Runnable runnable) booleanReactiveValue.same(ReactiveValue<?> other) Checks reference equality between twoReactiveValueinstances.voidReactiveFreezes.set(Object key, ReactiveValue<?> value) voidReactivePins.set(Object key, ReactiveValue<?> value) static <T> ReactiveStateMachine<T>ReactiveStateMachine.supply(ReactiveValue<T> initial, Supplier<T> supplier) voidReactiveVariable.value(ReactiveValue<T> value) Sets currentReactiveValueof thisReactiveVariableand notifies dependent reactive computations.Constructors in com.machinezoo.hookless with parameters of type ReactiveValueModifierConstructorDescriptionReactiveVariable(ReactiveValue<T> value) Creates new instance holding specifiedReactiveValue.