public class StateNode extends Object implements Serializable
For internal use only. May be renamed or removed in a future release.
StateTree
,
Serialized FormConstructor and Description |
---|
StateNode(Class<? extends NodeFeature>... featureTypes)
Creates a state node with the given feature types.
|
StateNode(List<Class<? extends NodeFeature>> reportableFeatureTypes,
Class<? extends NodeFeature>... additionalFeatureTypes)
Creates a state node with the given feature types and required features
that are always sent to the client side.
|
StateNode(StateNode node)
Create a new instance using the same features as provided
node
declares. |
Modifier and Type | Method and Description |
---|---|
Registration |
addAttachListener(Command attachListener)
Adds a command as an attach listener.
|
StateTree.ExecutionRegistration |
addBeforeClientResponseEntry(StateTree.BeforeClientResponseEntry entry)
Adds an entry to be executed before the next client response for this
node.
|
Registration |
addDetachListener(Command detachListener)
Adds a command as a detach listener.
|
void |
clearChanges()
Clears all changes recorded for this node.
|
void |
collectChanges(Consumer<NodeChange> collector)
Collects all changes made to this node since the last time
collectChanges(Consumer) has been called. |
List<StateTree.BeforeClientResponseEntry> |
dumpBeforeClientResponseEntries()
Gets the current list of pending execution entries for this node and
clears the current list.
|
<T extends Serializable> |
getChangeTracker(NodeFeature feature,
Supplier<T> factory)
Gets or creates a change tracker object for the provided feature.
|
<T extends NodeFeature> |
getFeature(Class<T> featureType)
Gets the feature of the given type, creating one if necessary.
|
<T extends NodeFeature> |
getFeatureIfInitialized(Class<T> featureType)
Gets the feature of the given type if it has been initialized.
|
int |
getId()
Gets the id of this node.
|
NodeOwner |
getOwner()
Gets the node owner that this node currently belongs to.
|
StateNode |
getParent()
Gets the parent node that this node belongs to.
|
boolean |
hasBeforeClientResponseEntries()
Checks whether there are pending executions for this node.
|
boolean |
hasFeature(Class<? extends NodeFeature> featureType)
Checks whether this node contains a feature.
|
boolean |
isAttached()
Checks whether this node is attached to a state tree.
|
boolean |
isEnabled()
Returns enabled state respecting ascendants state.
|
boolean |
isEnabledSelf()
Returns the enabled state only for this node.
|
boolean |
isInactive()
Checks whether the node is active.
|
boolean |
isReportedFeature(Class<? extends NodeFeature> featureType)
Returns whether the
featureType should be reported to the client
even if it doesn't contain any data. |
void |
markAsDirty()
Marks this node as dirty.
|
protected void |
onAttach()
Called when this node has been attached to a state tree.
|
protected void |
prepareForResync()
Prepares the tree below this node for resynchronization by detaching all
descendants, setting their internal state to not yet attached, and
calling the attach listeners.
|
void |
removeFromTree()
Removes the node from its parent and unlinks the node (and children) from
the state tree.
|
void |
runWhenAttached(SerializableConsumer<UI> command)
Runs the command when the node is attached to a UI.
|
void |
setEnabled(boolean enabled)
Enables/disables the node.
|
void |
setParent(StateNode parent)
Sets the parent node that this node belongs to.
|
protected void |
setTree(StateTree tree)
Sets the state tree that this node belongs to.
|
void |
updateActiveState()
Update "active"/"inactive" state of the node.
|
void |
visitNodeTree(Consumer<StateNode> visitor)
Applies the
visitor to this node and all its descendants. |
@SafeVarargs public StateNode(Class<? extends NodeFeature>... featureTypes)
featureTypes
- a collection of feature classes that the node should supportpublic StateNode(StateNode node)
node
declares.node
- the node whose features set will be copied@SafeVarargs public StateNode(List<Class<? extends NodeFeature>> reportableFeatureTypes, Class<? extends NodeFeature>... additionalFeatureTypes)
reportableFeatureTypes
- the list of the features that are required on the client side
(populated even if they are empty)additionalFeatureTypes
- a collection of feature classes that the node should support.
May, but is not required to, also include reportable feature
types.public NodeOwner getOwner()
public StateNode getParent()
null
if the node is not
attached to a parent node, or if this node is the root of a state
tree.public void setParent(StateNode parent)
null
.parent
- the new parent of this node; or null
if this node
is not attached to another nodeprotected void onAttach()
protected void setTree(StateTree tree)
tree
- the state treepublic void removeFromTree()
protected void prepareForResync()
public <T extends NodeFeature> T getFeature(Class<T> featureType)
IllegalStateException
if this node isn't configured
to use the desired feature. Use hasFeature(Class)
to check
whether a node is configured to use a specific feature.T
- the desired feature typefeatureType
- the desired feature type, not null
null
public <T extends NodeFeature> Optional<T> getFeatureIfInitialized(Class<T> featureType)
IllegalStateException
if this node isn't configured
to use the desired feature. Use hasFeature(Class)
to check
whether a node is configured to use a specific feature.T
- the desired feature typefeatureType
- the desired feature type, not null
public boolean hasFeature(Class<? extends NodeFeature> featureType)
featureType
- the feature type to check fortrue
if this node contains the feature; otherwise
false
public int getId()
StateTree.getNodeById(int)
public void markAsDirty()
StateTree.collectDirtyNodes()
public boolean isAttached()
true
if this node is attached; false
if
this node is not attachedpublic void collectChanges(Consumer<NodeChange> collector)
collectChanges(Consumer)
has been called. If the node is
recently attached, then the reported changes will be relative to a newly
created node.
WARNING: this is in fact an internal (private method) which is
expected to be called from StateTree.collectChanges(Consumer)
method only (which is effectively private itself). Don't call this method
from any other place because it will break the expected UI
state.
collector
- a consumer accepting node changespublic void clearChanges()
public void visitNodeTree(Consumer<StateNode> visitor)
visitor
to this node and all its descendants.
The visitor is first applied to this node (root) and then to children.
visitor
- visitor to applypublic Registration addAttachListener(Command attachListener)
attachListener
- the attach listener to addpublic Registration addDetachListener(Command detachListener)
detachListener
- the detach listener to addpublic <T extends Serializable> T getChangeTracker(NodeFeature feature, Supplier<T> factory)
T
- the change tracker typefeature
- the feature for which to get a change trackerfactory
- a factory method used to create a new tracker if there isn't
already onepublic void runWhenAttached(SerializableConsumer<UI> command)
If the node is already attached when this method is called, the method is run immediately.
command
- the command to run immediately or when the node is attachedpublic boolean isReportedFeature(Class<? extends NodeFeature> featureType)
featureType
should be reported to the client
even if it doesn't contain any data.featureType
- feature type which needs to be populated on the clientpublic void updateActiveState()
The node is considered as inactive if there is at least one feature whose
NodeFeature.allowsChanges()
method returns false or it has
inactive ascendant.
Inactive nodes should restrict their RPC communication with client: only
features that returns false
via their method
allowsChanges()
and reported features send their changes
while the node is inactive (the latter features are necessary on the
client side to be able to find a strategy which has to be selected to
handle the node).
Implementation Note: this is done as a separate method instead of calculating the state on the fly (checking all features) because each node needs to check this status on its own AND on its parents (may be all parents up to the root).
NodeFeature.allowsChanges()
public boolean isInactive()
Inactive node should not participate in any RPC communication.
true
if the node is inactivepublic boolean hasBeforeClientResponseEntries()
true
if there are pending executions, otherwise
false
StateTree.beforeClientResponse(StateNode,
com.vaadin.flow.function.SerializableConsumer)
public List<StateTree.BeforeClientResponseEntry> dumpBeforeClientResponseEntries()
StateTree.beforeClientResponse(StateNode,
com.vaadin.flow.function.SerializableConsumer)
public StateTree.ExecutionRegistration addBeforeClientResponseEntry(StateTree.BeforeClientResponseEntry entry)
StateTree.beforeClientResponse(StateNode, com.vaadin.flow.function.SerializableConsumer)
to ensure proper ordering.entry
- the entry to add, not null
public void setEnabled(boolean enabled)
enabled
- a new enabled statepublic boolean isEnabled()
The node may be explicitly disabled via its setEnabled(boolean)
method (with false
argument value). Also it may be implicitly
disabled if its ascendant is explicitly disabled. The method returns the
state which may be either explicit or implicit.
The method isEnabledSelf()
returns only explicit enabled state
of the node.
isEnabledSelf()
public boolean isEnabledSelf()
The node may be implicitly or explicitly disabled (see
isEnabled()
method). This method doesn't respect ascendants
enabled state. It returns the own state for the node only.
isEnabled()
Copyright © 2021. All rights reserved.