Uses of Class
com.vaadin.signals.impl.SignalTree
Packages that use SignalTree
-
Uses of SignalTree in com.vaadin.signals
Methods in com.vaadin.signals that return SignalTreeModifier and TypeMethodDescriptionprotected SignalTreeAbstractSignal.tree()Gets the signal tree that stores the value for this signal.static SignalTreeSignalUtils.treeOf(AbstractSignal<?> signal) Returns the underlyingSignalTreeinstance of the given signal.Constructors in com.vaadin.signals with parameters of type SignalTreeModifierConstructorDescriptionprotectedAbstractSignal(SignalTree tree, Id id, Predicate<SignalCommand> validator) Creates a new signal instance with the given id and validator for the given signal tree.protectedListSignal(SignalTree tree, Id id, Predicate<SignalCommand> validator, Class<T> elementType) Creates a new list signal instance with the given id and validator for the given signal tree with the given element type.protectedMapSignal(SignalTree tree, Id id, Predicate<SignalCommand> validator, Class<T> elementType) Creates a new map signal instance with the given id and validator for the given signal tree with the given element type.protectedNodeSignal(SignalTree tree, Id id, Predicate<SignalCommand> validator) Creates a new node signal based on the given tree, node id and validator.protectedNumberSignal(SignalTree tree, Id id, Predicate<SignalCommand> validator) Creates a new number signal instance with the given id and validator for the given signal tree.protectedValueSignal(SignalTree tree, Id id, Predicate<SignalCommand> validator, Class<T> valueType) Creates a new value signal instance with the given id and validator for the given signal tree with the given value type. -
Uses of SignalTree in com.vaadin.signals.impl
Subclasses of SignalTree in com.vaadin.signals.implModifier and TypeClassDescriptionclassA signal tree that submits commands to an event log and asynchronously waits for external confirmation before completing handling of the command.classA signal tree that immediately confirms commands without waiting for an external system to determine command ordering.Methods in com.vaadin.signals.impl with parameters of type SignalTreeModifier and TypeMethodDescriptionvoidStagedTransaction.include(SignalTree tree, SignalCommand command, Consumer<CommandResult> resultHandler, boolean applyToTree) voidTransaction.include(SignalTree tree, SignalCommand command, Consumer<CommandResult> resultHandler) Includes the given command to the given tree in the context of this transaction and sets the command to be applied to the underlying signal tree.protected abstract voidTransaction.include(SignalTree tree, SignalCommand command, Consumer<CommandResult> resultHandler, boolean applyToTree) Includes the given command to the given tree in the context of this transaction and optionally also sets the command to be applied to the underlying signal tree.StagedTransaction.read(SignalTree tree) abstract TreeRevisionTransaction.read(SignalTree tree) Gets a revision for reading from the given tree in the context of this transaction.