15 lines
217 B
C#
15 lines
217 B
C#
namespace NATS.Server.Raft;
|
|
|
|
public sealed class RaftTermState
|
|
{
|
|
public int CurrentTerm { get; set; }
|
|
public string? VotedFor { get; set; }
|
|
}
|
|
|
|
public enum RaftRole
|
|
{
|
|
Follower,
|
|
Candidate,
|
|
Leader,
|
|
}
|