public static interface SessionEnvironment.Monitor
Modifier and Type | Method and Description |
---|---|
void |
recordAdd(String workspace,
NodeKey key,
Path path,
Name primaryType,
Set<Name> mixinTypes,
Iterator<Property> propertiesIterator)
Add to the index the information about a node.
|
void |
recordChanged(long changedNodesCount)
Record total number of nodes that were affected
|
void |
recordRemove(String workspace,
Iterable<NodeKey> keys)
Remove from the index for the given workspace all of the nodes with the supplied keys.
|
void |
recordUpdate(String workspace,
NodeKey key,
Path path,
Name primaryType,
Set<Name> mixinTypes,
Iterator<Property> properties)
Update the index to reflect the new state of the node.
|
void recordAdd(String workspace, NodeKey key, Path path, Name primaryType, Set<Name> mixinTypes, Iterator<Property> propertiesIterator)
workspace
- the workspace in which the node information should be available; may not be nullkey
- the unique key for the node; may not be nullpath
- the path of the node; may not be nullprimaryType
- the primary type of the node; may not be nullmixinTypes
- the mixin types for the node; may not be null but may be emptypropertiesIterator
- an iterator over a collection of propertiesvoid recordUpdate(String workspace, NodeKey key, Path path, Name primaryType, Set<Name> mixinTypes, Iterator<Property> properties)
workspace
- the workspace in which the node information should be available; may not be nullkey
- the unique key for the node; may not be nullpath
- the path of the node; may not be nullprimaryType
- the primary type of the node; may not be nullmixinTypes
- the mixin types for the node; may not be null but may be emptyproperties
- the properties of the node; may not be null but may be emptyvoid recordRemove(String workspace, Iterable<NodeKey> keys)
workspace
- the workspace in which the nodes were removed; may not be nullkeys
- the keys for the nodes that are to be removed; may not be nullvoid recordChanged(long changedNodesCount)
changedNodesCount
- Copyright © 2008-2014 JBoss, a division of Red Hat. All Rights Reserved.