Exemplo n.º 1
0
 public bool Replicate(VectorTime time, IReplicationFilter filter)
 {
     return(Replicate(time) && filter.Apply(this));
 }
Exemplo n.º 2
0
 private bool Before(VectorTime vectorTime)
 {
     return(VectorTimestamp <= vectorTime);
 }
Exemplo n.º 3
0
 public bool Replicate(VectorTime time)
 {
     return(!(VectorTimestamp <= time));
 }
Exemplo n.º 4
0
 public bool Replicable(VectorTime vectorTime, IReplicationFilter filter)
 {
     return(!Before(vectorTime) && filter.Apply(this));
 }