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