Uses of Interface
com.vaadin.signals.Signal
Packages that use Signal
-
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.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.classA writable signal that holds a reference to an object.classValueSignal<T>A signal containing a value.Methods in com.vaadin.signals that return SignalModifier and TypeMethodDescriptionWritableSignal.asReadonly()Wraps this signal to not accept changes.static <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.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. -
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.