Class FollowerInfo
- java.lang.Object
-
- org.opendaylight.controller.cluster.mgmt.api.FollowerInfo
-
@NonNullByDefault public final class FollowerInfo extends Object
A bean class containing a snapshot of information for a follower returned from GetOnDemandRaftStats.- Author:
- Thomas Pantelis
-
-
Constructor Summary
Constructors Constructor Description FollowerInfo(String id, long nextIndex, long matchIndex, boolean active, String timeSinceLastActivity, boolean voting)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getId()
long
getMatchIndex()
long
getNextIndex()
String
getTimeSinceLastActivity()
boolean
isActive()
boolean
isVoting()
-
-
-
Constructor Detail
-
FollowerInfo
@ConstructorParameters({"id","nextIndex","matchIndex","active","timeSinceLastActivity","voting"}) public FollowerInfo(String id, long nextIndex, long matchIndex, boolean active, String timeSinceLastActivity, boolean voting)
-
-