Package | Description |
---|---|
org.wildfly.clustering.dispatcher |
Public clustering API which facilitates remote command execution
on the cluster.
|
Modifier and Type | Method and Description |
---|---|
default <R> Map<Node,CommandResponse<R>> |
CommandDispatcher.executeOnCluster(Command<R,? super C> command,
Node... excludedNodes)
Deprecated.
Replaced by
CommandDispatcher.executeOnGroup(Command, Node...) . |
<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.
|
default <R> CommandResponse<R> |
CommandDispatcher.executeOnNode(Command<R,? super C> command,
Node node)
Deprecated.
Replaced by
CommandDispatcher.executeOnMember(Command, Node) . |
default <R> Map<Node,Future<R>> |
CommandDispatcher.submitOnCluster(Command<R,? super C> command,
Node... excludedNodes)
Deprecated.
Replaced by
CommandDispatcher.executeOnGroup(Command, Node...) . |
default <R> Future<R> |
CommandDispatcher.submitOnNode(Command<R,? super C> command,
Node node)
Deprecated.
Replaced by
CommandDispatcher.executeOnMember(Command, Node) . |
Copyright © 2019 JBoss by Red Hat. All rights reserved.