説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }