Brak opisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PlasticShutdown.cs 542B

1234567891011121314151617181920212223
  1. using Codice.Client.Common.FsNodeReaders;
  2. using Codice.LogWrapper;
  3. using PlasticPipe.Client;
  4. namespace Unity.PlasticSCM.Editor
  5. {
  6. internal static class PlasticShutdown
  7. {
  8. internal static void Shutdown()
  9. {
  10. mLog.Debug("Shutdown");
  11. WorkspaceFsNodeReaderCachesCleaner.Shutdown();
  12. PlasticPlugin.Shutdown();
  13. PlasticApp.Dispose();
  14. ClientConnectionPool.Shutdown();
  15. }
  16. static readonly ILog mLog = PlasticApp.GetLogger("PlasticShutdown");
  17. }
  18. }