コード例 #1
0
ファイル: FileVertexProvider.cs プロジェクト: klawrawkz/CRA
 public Task InsertOrReplace(VertexInfo newInfo)
 => FileUtils.InsertOrUpdate(
     _fileName,
     newInfo,
     MatchVersion,
     UpdateVerion);
コード例 #2
0
 public Task Insert(ShardedVertexInfo shardedVertexInfo)
 => FileUtils.InsertOrUpdate(
     _fileName,
     shardedVertexInfo,
     MatchVersion,
     UpdateVerion);
コード例 #3
0
 public Task AddEndpoint(EndpointInfo endpointInfo)
 => FileUtils.InsertOrUpdate(
     _fileName,
     endpointInfo,
     MatchVersion,
     UpdateVerion);
コード例 #4
0
 public Task Add(VertexConnectionInfo vertexConnectionInfo)
 => FileUtils.InsertOrUpdate <VertexConnectionInfo>(
     _fileName,
     vertexConnectionInfo,
     MatchVersion,
     UpdateVerion);