Uses of Class
io.atomix.raft.protocol.LeaveResponse
Packages that use LeaveResponse
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 LeaveResponse in io.atomix.raft.partition.impl
Methods in io.atomix.raft.partition.impl that return types with arguments of type LeaveResponseModifier and TypeMethodDescriptionRaftServerCommunicator.leave(MemberId memberId, LeaveRequest request) Method parameters in io.atomix.raft.partition.impl with type arguments of type LeaveResponseModifier and TypeMethodDescriptionvoidRaftServerCommunicator.registerLeaveHandler(Function<LeaveRequest, CompletableFuture<LeaveResponse>> handler) -
Uses of LeaveResponse in io.atomix.raft.protocol
Methods in io.atomix.raft.protocol that return LeaveResponseMethods in io.atomix.raft.protocol that return types with arguments of type LeaveResponseModifier and TypeMethodDescriptionRaftServerProtocol.leave(MemberId memberId, LeaveRequest request) Sends a leave request to the given node.Method parameters in io.atomix.raft.protocol with type arguments of type LeaveResponseModifier and TypeMethodDescriptionvoidRaftServerProtocol.registerLeaveHandler(Function<LeaveRequest, CompletableFuture<LeaveResponse>> handler) -
Uses of LeaveResponse in io.atomix.raft.roles
Methods in io.atomix.raft.roles that return types with arguments of type LeaveResponseModifier and TypeMethodDescriptionInactiveRole.onLeave(LeaveRequest request) LeaderRole.onLeave(LeaveRequest request) PassiveRole.onLeave(LeaveRequest request) RaftRole.onLeave(LeaveRequest request) Handles a request to leave the cluster.