Uses of Class
io.atomix.raft.protocol.ReconfigureResponse
Packages that use ReconfigureResponse
Package
Description
Raft partition management utilities.
Provides
RaftRequest and RaftResponse implementations for all internal Raft protocol
communication.Provides classes for role-based management of leader election and replication in the Raft
consensus protocol.
-
Uses of ReconfigureResponse in io.atomix.raft.partition.impl
Methods in io.atomix.raft.partition.impl that return types with arguments of type ReconfigureResponseModifier and TypeMethodDescriptionRaftServerCommunicator.reconfigure(MemberId memberId, ReconfigureRequest request) Method parameters in io.atomix.raft.partition.impl with type arguments of type ReconfigureResponseModifier and TypeMethodDescriptionvoidRaftServerCommunicator.registerReconfigureHandler(Function<ReconfigureRequest, CompletableFuture<ReconfigureResponse>> handler) -
Uses of ReconfigureResponse in io.atomix.raft.protocol
Methods in io.atomix.raft.protocol that return ReconfigureResponseMethods in io.atomix.raft.protocol that return types with arguments of type ReconfigureResponseModifier and TypeMethodDescriptionRaftServerProtocol.reconfigure(MemberId memberId, ReconfigureRequest request) Sends a reconfigure request to the given node.Method parameters in io.atomix.raft.protocol with type arguments of type ReconfigureResponseModifier and TypeMethodDescriptionvoidRaftServerProtocol.registerReconfigureHandler(Function<ReconfigureRequest, CompletableFuture<ReconfigureResponse>> handler) Registers a reconfigure request callback. -
Uses of ReconfigureResponse in io.atomix.raft.roles
Methods in io.atomix.raft.roles that return types with arguments of type ReconfigureResponseModifier and TypeMethodDescriptionInactiveRole.onReconfigure(ReconfigureRequest request) LeaderRole.onReconfigure(ReconfigureRequest request) PassiveRole.onReconfigure(ReconfigureRequest request) RaftRole.onReconfigure(ReconfigureRequest request) Handles a configure request.