RaftActor (Leader) will start replication if non-applied entries contain only NoOps. An entity (ReplicationActor or ReplicatedEntity) doesn't need to apply NoOp to itself since NoOp won't change the entity's actual state. RaftActor (Follower) also doesn't send Replica to its entity for EntityEvent(..., NoOp).
Closes #170
RaftActor
(Leader
) will start replication if non-applied entries contain onlyNoOp
s. An entity (ReplicationActor
orReplicatedEntity
) doesn't need to applyNoOp
to itself sinceNoOp
won't change the entity's actual state.RaftActor
(Follower
) also doesn't sendReplica
to its entity forEntityEvent(..., NoOp)
.