Uses of Class
io.atomix.raft.protocol.InstallResponse
Packages that use InstallResponse
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 InstallResponse in io.atomix.raft.partition.impl
Methods in io.atomix.raft.partition.impl that return types with arguments of type InstallResponseModifier and TypeMethodDescriptionRaftServerCommunicator.install(MemberId memberId, InstallRequest request) Method parameters in io.atomix.raft.partition.impl with type arguments of type InstallResponseModifier and TypeMethodDescriptionvoidRaftServerCommunicator.registerInstallHandler(Function<InstallRequest, CompletableFuture<InstallResponse>> handler) -
Uses of InstallResponse in io.atomix.raft.protocol
Methods in io.atomix.raft.protocol that return InstallResponseMethods in io.atomix.raft.protocol that return types with arguments of type InstallResponseModifier and TypeMethodDescriptionRaftServerProtocol.install(MemberId memberId, InstallRequest request) Sends an install request to the given node.Method parameters in io.atomix.raft.protocol with type arguments of type InstallResponseModifier and TypeMethodDescriptionvoidRaftServerProtocol.registerInstallHandler(Function<InstallRequest, CompletableFuture<InstallResponse>> handler) Registers a install request callback. -
Uses of InstallResponse in io.atomix.raft.roles
Methods in io.atomix.raft.roles that return types with arguments of type InstallResponseModifier and TypeMethodDescriptionFollowerRole.onInstall(InstallRequest request) InactiveRole.onInstall(InstallRequest request) PassiveRole.onInstall(InstallRequest request) RaftRole.onInstall(InstallRequest request) Handles an install request.