Uses of Class
com.vaadin.flow.signals.local.ValueSignal
Packages that use ValueSignal
Package
Description
Server-side API for wiring client-side triggers (DOM events, shortcuts, …) to
client-side actions (clipboard copy, set property, run JS, …) reading values
from outputs, without a server round-trip when not needed.
-
Uses of ValueSignal in com.vaadin.flow.component.internal
Methods in com.vaadin.flow.component.internal that return ValueSignalModifier and TypeMethodDescriptionUIInternals.getGeolocationAvailabilitySignal()Returns the reactive signal holding the geolocation availability for this UI. -
Uses of ValueSignal in com.vaadin.flow.component.trigger
Methods in com.vaadin.flow.component.trigger with parameters of type ValueSignalModifier and TypeMethodDescriptionstatic <T> SignalOutput<T> SignalOutput.of(ValueSignal<T> signal, Class<T> valueType) Convenience for the common case: pair aValueSignalwith an output of the same value type. -
Uses of ValueSignal in com.vaadin.flow.signals.local
Methods in com.vaadin.flow.signals.local that return ValueSignalModifier and TypeMethodDescriptionInserts a value at the given index in this list.ListSignal.insertFirst(T value) Inserts a value as the first entry in this list.ListSignal.insertLast(T value) Inserts a value as the last entry in this list.Methods in com.vaadin.flow.signals.local that return types with arguments of type ValueSignalModifier and TypeMethodDescriptionList<ValueSignal<T>> ListSignal.get()List<ValueSignal<T>> ListSignal.insertAllAt(int index, Collection<? extends T> values) Inserts all values at the given index in this list, preserving the order of the provided collection.List<ValueSignal<T>> ListSignal.insertAllFirst(Collection<? extends T> values) Inserts all values as the first entries in this list, preserving the order of the provided collection.List<ValueSignal<T>> ListSignal.insertAllLast(Collection<? extends T> values) Inserts all values as the last entries in this list.List<ValueSignal<T>> ListSignal.peek()Methods in com.vaadin.flow.signals.local with parameters of type ValueSignalModifier and TypeMethodDescriptionvoidListSignal.moveTo(ValueSignal<T> entry, int toIndex) Moves an existing entry to a new position in this list.voidListSignal.remove(ValueSignal<T> entry) Removes the given entry from this list.