Uses of Interface
com.vaadin.flow.signals.WritableSignal
Packages that use WritableSignal
Package
Description
-
Uses of WritableSignal in com.vaadin.flow.component
Methods in com.vaadin.flow.component that return WritableSignalModifier and TypeMethodDescriptionUI.localeSignal()Gets a signal that holds the current locale of this UI. -
Uses of WritableSignal in com.vaadin.flow.server
Methods in com.vaadin.flow.server that return WritableSignalModifier and TypeMethodDescriptionVaadinSession.localeSignal()Gets a signal that holds the current locale of this session. -
Uses of WritableSignal in com.vaadin.flow.signals
Methods in com.vaadin.flow.signals that return WritableSignalModifier and TypeMethodDescriptiondefault <C> WritableSignal<C> WritableSignal.map(SignalMapper<T, C> getter, ValueMerger<T, C> merger) Creates a two-way mapped signal that provides a bidirectional view of this signal. -
Uses of WritableSignal in com.vaadin.flow.signals.impl
Classes in com.vaadin.flow.signals.impl that implement WritableSignalModifier and TypeClassDescriptionclassMappedModifySignal<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.Constructors in com.vaadin.flow.signals.impl with parameters of type WritableSignalModifierConstructorDescriptionMappedWritableSignal(WritableSignal<P> parent, SignalMapper<P, C> getter, ValueMerger<P, C> merger) Creates a new mapped writable signal. -
Uses of WritableSignal in com.vaadin.flow.signals.local
Classes in com.vaadin.flow.signals.local that implement WritableSignalModifier and TypeClassDescriptionclassValueSignal<T>A local writable signal that holds a reference to an object.Methods in com.vaadin.flow.signals.local that return WritableSignalModifier and TypeMethodDescription<C> WritableSignal<C> ValueSignal.mapMutable(SignalMapper<T, C> getter, SignalModifier<T, C> modifier) Creates a two-way mapped signal that uses in-place modification for writing.