Uses of Interface
com.vaadin.signals.Signal
Packages that use Signal
Package
Description
-
Uses of Signal in com.vaadin.flow.component
Methods in com.vaadin.flow.component with parameters of type SignalModifier and TypeMethodDescriptionstatic <C extends Component,T>
RegistrationComponentEffect.bind(C owner, Signal<T> signal, SerializableBiConsumer<C, T> setter) Binds asignal's value to a given owner component in a way defined insetterfunction and creates a Signal effect function executing the setter whenever the signal value changes. -
Uses of Signal in com.vaadin.signals
Classes in com.vaadin.signals that implement SignalModifier and TypeClassDescriptionclassBase type for full-featured signals that are backed by a transactional signal tree.classListSignal<T>A signal containing a list of values.classMapSignal<T>A signal containing a map of values with string keys.classA signal representing a node in a tree structure.classA signal containing a numeric value.classValueSignal<T>A signal containing a value.Methods in com.vaadin.signals that return SignalModifier and TypeMethodDescriptionstatic <T> Signal<T> Creates a new computed signal with the given computation callback.default <C> Signal<C> Creates a simple computed signal based on a mapper function that is passed the value of this signal.<C> Signal<C> NumberSignal.mapIntValue(IntFunction<C> mapper) Creates a computed signal based on an integer mapper function that is passed the value of this signal. -
Uses of Signal in com.vaadin.signals.impl
Classes in com.vaadin.signals.impl that implement SignalModifier and TypeClassDescriptionclassA signal with a value that is computed based on the value of other signals. -
Uses of Signal in com.vaadin.signals.operations
Classes in com.vaadin.signals.operations with type parameters of type SignalModifier and TypeClassDescriptionclassInsertOperation<T extends Signal<?>>An operation that inserts a new child signal into a list or map.