Toggle navigation
Home
net.kuujo.copycat.raft.log.RaftLog to net.kuujo.copycat.raft.log.Log
No. of Instances - 7
No. of Commits - 1
No. of Projects - {'atomix'}
Hierarchy/Composition: SIBLING
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Add or Remove Method invocation
cluster.open().thenRunAsync(() -> { open=true; switch (cluster.member().type()) { case CLIENT: transition(RemoteState.class); break; case ACTIVE: log.open(); transition(FollowerState.class); break; } } ,context).thenApply(v -> this)
to
cluster.open().thenRunAsync(() -> { open=true; switch (cluster.member().type()) { case CLIENT: transition(RemoteState.class); break; case ACTIVE: log.open(context); transition(FollowerState.class); break; } } ,context).thenApply(v -> this)