Toggle navigation
Home
net.kuujo.copycat.raft.Member to net.kuujo.copycat.raft.server.state.MemberState
No. of Instances - 2
No. of Commits - 1
No. of Projects - {'atomix'}
Hierarchy/Composition: Composition
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Add or Remove Method invocation
context.getConnections().getConnection(member)
to
context.getConnections().getConnection(member.getMember())
LOGGER.debug("{} - Received greater term from {}",context.getMemberId(),member)
to
LOGGER.debug("{} - Received greater term from {}",context.getMember().id(),member)
context.getMemberId()
to
context.getMember().id()
context.getConnections().getConnection(member)
to
context.getConnections().getConnection(member.getMember())
LOGGER.warn("{} - {}",context.getMemberId(),error.getMessage())
to
LOGGER.warn("{} - {}",context.getMember().id(),error.getMessage())
context.getMemberId()
to
context.getMember().id()