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