コード例 #1
0
ファイル: DurableEvent.cs プロジェクト: Horusiath/Playground
 public bool Replicate(VectorTime time, IReplicationFilter filter)
 {
     return(Replicate(time) && filter.Apply(this));
 }
コード例 #2
0
ファイル: DurableEvent.cs プロジェクト: Horusiath/Playground
 private bool Before(VectorTime vectorTime)
 {
     return(VectorTimestamp <= vectorTime);
 }
コード例 #3
0
ファイル: DurableEvent.cs プロジェクト: Horusiath/Playground
 public bool Replicate(VectorTime time)
 {
     return(!(VectorTimestamp <= time));
 }
コード例 #4
0
ファイル: DurableEvent.cs プロジェクト: Horusiath/Playground
 public bool Replicable(VectorTime vectorTime, IReplicationFilter filter)
 {
     return(!Before(vectorTime) && filter.Apply(this));
 }