Uses of Interface
com.vaadin.signals.SignalCommand
Packages that use SignalCommand
-
Uses of SignalCommand in com.vaadin.signals
Subinterfaces of SignalCommand in com.vaadin.signalsModifier and TypeInterfaceDescriptionstatic interfaceA signal command that doesn't apply any change but only performs a test that will be part of determining whether a transaction passes.static interfaceA signal command that doesn't target a specific node.static interfaceA signal command that targets a map entry by key.static interfaceA signal command that creates a new signal node that might have an owner.static interfaceA signal command that sets the value of a signal.Classes in com.vaadin.signals that implement SignalCommandModifier and TypeClassDescriptionstatic final recordAdopts the given node as a child with the given key.static final recordAdopts the given node as a child at the given insertion position.static final recordRemoves all children from the target node.static final recordRemoves all nodes that have its scope owner set as the given id.static final recordIncrements the value of the given node by the given delta.static final recordInserts a new node with the given value at the given list insert position.static final recordTests whether the given node has the expected child for a specific map key.static final recordTests that the given node was last updated by the command with the given id.static final recordTests whether the given node has a given child at a given position.static final recordStores the given value in a child node with the given key.static final recordStores the given value in a child node with the given key if it doesn't already exist.static final recordRemoves the child with the given key, if present.static final recordRemoves the given node from its parent, optionally verifying that the parent is as expected.static final recordSets the value of the given node.static final recordInitializes a tree based on a collection of pre-existing nodes.static final recordA sequence of commands that should be applied atomically and only if all commands are individually accepted.static final recordTests whether the given node has the expected value, based on JSON equality.Methods in com.vaadin.signals that return types with arguments of type SignalCommandModifier and TypeMethodDescriptionSignalCommand.TransactionCommand.commands()Returns the value of thecommandsrecord component.Constructor parameters in com.vaadin.signals with type arguments of type SignalCommandModifierConstructorDescriptionTransactionCommand(Id commandId, List<SignalCommand> commands) Creates an instance of aTransactionCommandrecord class. -
Uses of SignalCommand in com.vaadin.signals.impl
Methods in com.vaadin.signals.impl with parameters of type SignalCommandModifier and TypeMethodDescriptionvoidMutableTreeRevision.apply(SignalCommand command, BiConsumer<Id, CommandResult> resultCollector) Applies a single command and passes the results to the provided handler.Method parameters in com.vaadin.signals.impl with type arguments of type SignalCommandModifier and TypeMethodDescriptionvoidMutableTreeRevision.apply(List<SignalCommand> commands) Applies a sequence of commands and ignores the results.MutableTreeRevision.applyAndGetResults(List<SignalCommand> commands) Applies a sequence of commands and collects the results to a map.