Class ObservableValue<T>

    • Method Detail

      • get

        public T get()
      • silent

        public void silent​(T value)
        Sets the value of the ObservableValue, but does not notify subscribers.
      • set

        public void set​(T value)
        Sets the value of the ObservableValue and notifies subscribers if the value has changed.
      • change

        public void change​(T value)
        Sets the value of the ObservableValue to the specified value and notifies subscribers regardless of whether the value has changed.
      • publish

        public void publish()