示例#1
0
        public void RegisterPrimarySolutionId(SolutionId solutionId, string storageLocation, CancellationToken cancellationToken)
        {
            var persistentStorageService = GetPersistentStorageService();

            persistentStorageService?.RegisterPrimarySolution(solutionId);
            RemotePersistentStorageLocationService.UpdateStorageLocation(solutionId, storageLocation);
        }
示例#2
0
        public void PersistentStorageService_UpdateSolutionIdStorageLocation(
            byte[] solutionIdGuidBytes, string solutionIdDebugName, string storageLocation, byte[] solutionChecksum)
        {
            var solutionId = CreateSolutionId(solutionIdGuidBytes, solutionIdDebugName);

            RemotePersistentStorageLocationService.UpdateStorageLocation(
                solutionId, storageLocation);
        }
示例#3
0
 public void UpdateSolutionIdStorageLocation(SolutionId solutionId, string storageLocation, CancellationToken cancellationToken)
 {
     RemotePersistentStorageLocationService.UpdateStorageLocation(solutionId, storageLocation);
 }
示例#4
0
 public void PersistentStorageService_UpdateSolutionIdStorageLocation(SolutionId solutionId, string storageLocation)
 {
     RemotePersistentStorageLocationService.UpdateStorageLocation(solutionId, storageLocation);
 }