Uses of Interface
com.vaadin.signals.Signal
Packages that use Signal
Package
Description
-
Uses of Signal in com.vaadin.signals
Subinterfaces of Signal in com.vaadin.signalsModifier and TypeInterfaceDescriptioninterfaceA signal to which a new value can be directly written.Methods in com.vaadin.signals that return SignalModifier and TypeMethodDescriptionWritableSignal.asReadonly()Wraps this signal to not accept changes.static <T> Signal<T> Signal.computed(SignalComputation<T> computation) Creates a new computed signal with the given computation callback.default <C> Signal<C> Signal.map(SignalMapper<T, C> mapper) Creates a simple computed signal based on a mapper function that is passed the value of this signal.Crates a new computed signal containing the negation of the provided boolean-valued signal.Methods in com.vaadin.signals with parameters of type 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.classMappedModifySignal<P,C> A writable signal that provides a two-way mapped view of aValueSignalusing in-place modification.classMappedWritableSignal<P,C> A writable signal that provides a two-way mapped view of another writable signal. -
Uses of Signal in com.vaadin.signals.local
Classes in com.vaadin.signals.local that implement SignalModifier and TypeClassDescriptionclassBase class for local signals providing shared listener notification, usage tracking, and value access logic.classListSignal<T>A local list signal that holds a list of writable signals, enabling per-entry reactivity.classValueSignal<T>A local writable signal that holds a reference to an object. -
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.