Uses of Interface
org.wildfly.clustering.group.Node
-
Packages that use Node Package Description org.wildfly.clustering.dispatcher Public clustering API which facilitates remote command execution on the cluster.org.wildfly.clustering.group Public clustering API which represent cluster group and its members.org.wildfly.clustering.provider Public clustering API for registering services on a group of nodes.org.wildfly.clustering.registry Public clustering API for clustered registry that stores a unique key/value pair per node. -
-
Uses of Node in org.wildfly.clustering.dispatcher
Methods in org.wildfly.clustering.dispatcher that return types with arguments of type Node Modifier and Type Method Description <R> Map<Node,CompletionStage<R>>CommandDispatcher. executeOnGroup(Command<R,? super C> command, Node... excludedMembers)Executes the specified command on all members of the group, optionally excluding some members.Methods in org.wildfly.clustering.dispatcher with parameters of type Node Modifier and Type Method Description <R> Map<Node,CompletionStage<R>>CommandDispatcher. executeOnGroup(Command<R,? super C> command, Node... excludedMembers)Executes the specified command on all members of the group, optionally excluding some members.<R> CompletionStage<R>CommandDispatcher. executeOnMember(Command<R,? super C> command, Node member)Executes the specified command on the specified group member. -
Uses of Node in org.wildfly.clustering.group
Methods in org.wildfly.clustering.group that return Node Modifier and Type Method Description NodeMembership. getCoordinator()Returns the coordinator node of this group membership.NodeGroup. getLocalMember()Returns the local member.Methods in org.wildfly.clustering.group that return types with arguments of type Node Modifier and Type Method Description List<Node>Membership. getMembers()Returns the nodes that comprise this group membership. -
Uses of Node in org.wildfly.clustering.provider
Methods in org.wildfly.clustering.provider that return types with arguments of type Node Modifier and Type Method Description Set<Node>ServiceProviderRegistration. getProviders()Returns the set of nodes that can provide this service.Set<Node>ServiceProviderRegistry. getProviders(T service)Returns the set of nodes that can provide the specified service.Method parameters in org.wildfly.clustering.provider with type arguments of type Node Modifier and Type Method Description voidServiceProviderRegistration.Listener. providersChanged(Set<Node> nodes)Indicates that the set of nodes providing a given service has changed. -
Uses of Node in org.wildfly.clustering.registry
Methods in org.wildfly.clustering.registry with parameters of type Node Modifier and Type Method Description Map.Entry<K,V>Registry. getEntry(Node node)Returns the registry entry for the specified node.
-