public bool Replicate(VectorTime time, IReplicationFilter filter) { return(Replicate(time) && filter.Apply(this)); }
private bool Before(VectorTime vectorTime) { return(VectorTimestamp <= vectorTime); }
public bool Replicate(VectorTime time) { return(!(VectorTimestamp <= time)); }
public bool Replicable(VectorTime vectorTime, IReplicationFilter filter) { return(!Before(vectorTime) && filter.Apply(this)); }