public void RegisterPrimarySolutionId(SolutionId solutionId, string storageLocation, CancellationToken cancellationToken)
        {
            var persistentStorageService = GetPersistentStorageService();

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

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