Class FindLeaderReply
java.lang.Object
org.opendaylight.controller.cluster.raft.client.messages.FindLeaderReply
- All Implemented Interfaces:
 Serializable
Reply to 
FindLeader message, containing the address of the leader actor, as known to the raft actor which
 sent the message. If the responding actor does not have knowledge of the leader, leaderActorPath() will
 return null.
 This message is intended for testing purposes only.
- See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionFindLeaderReply(@Nullable String leaderActorPath) Default constructor.FindLeaderReply(@Nullable ActorPath leaderActorPath) Convenience constructor translating anActorPathto its string form. - 
Method Summary
Modifier and TypeMethodDescription@Nullable StringReturns the actor reference to the leader, ornullif no leader is known. 
- 
Constructor Details
 - 
Method Details
- 
leaderActorPath
Returns the actor reference to the leader, ornullif no leader is known.- Returns:
 - the actor reference to the leader, or 
nullif no leader is known 
 
 -