Uses of Interface
org.axonframework.commandhandling.distributed.Member
Packages that use Member
-
Uses of Member in org.axonframework.commandhandling.distributed
Classes in org.axonframework.commandhandling.distributed that implement MemberModifier and TypeClassDescriptionstatic classMember implementation used by aConsistentHashregistry.classSimpleMember<E>An endpoint in the network for a command handling service.Methods in org.axonframework.commandhandling.distributed that return types with arguments of type MemberModifier and TypeMethodDescriptionCommandRouter.findDestination(CommandMessage<?> message) Returns the member instance to which the givenmessageshould be routed.ConsistentHash.getMember(String routingKey, CommandMessage<?> commandMessage) Returns the member instance to which the givenmessageshould be routed.ConsistentHash.getMembers()Returns the set of members registered with this consistent hash instance.Methods in org.axonframework.commandhandling.distributed with parameters of type MemberModifier and TypeMethodDescription<C> voidCommandBusConnector.send(Member destination, CommandMessage<? extends C> command) Sends the givencommandto the node assigned to handle messages with the givenroutingKey.<C,R> void CommandBusConnector.send(Member destination, CommandMessage<C> command, CommandCallback<? super C, R> callback) Sends the givencommandto the node assigned to handle messages with the givenroutingKey.ConsistentHash.with(Member member, int loadFactor, CommandMessageFilter commandFilter) Registers the givenmemberwith givenloadFactorandcommandFilterif it is not already contained in theConsistentHash.Deregisters the givenmemberand returns a newConsistentHashwith updated memberships.