Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

PlasticShutdown.cs 714B

123456789101112131415161718192021222324252627
  1. using Codice.Client.Common.FsNodeReaders;
  2. using Codice.CM.Common;
  3. using Codice.LogWrapper;
  4. using PlasticPipe.Client;
  5. namespace Unity.PlasticSCM.Editor
  6. {
  7. internal static class PlasticShutdown
  8. {
  9. internal static void Shutdown()
  10. {
  11. mLog.Debug("Shutdown");
  12. WorkspaceInfo wkInfo = FindWorkspace.InfoForApplicationPath(
  13. ApplicationDataPath.Get(), PlasticGui.Plastic.API);
  14. WorkspaceFsNodeReaderCachesCleaner.Shutdown();
  15. PlasticPlugin.Shutdown();
  16. PlasticApp.Dispose(wkInfo);
  17. ClientConnectionPool.Shutdown();
  18. }
  19. static readonly ILog mLog = PlasticApp.GetLogger("PlasticShutdown");
  20. }
  21. }