SessionPingThread.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. using CommonNetwork_ICE.Client;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace CommonNetwork_ICE.Session
  7. {
  8. /// <summary>
  9. /// 刷新会话,判断是否会话已经过期
  10. /// </summary>
  11. internal class SessionPingThread
  12. {
  13. public SessionPingThread(IceClientConnector client, Glacier2.RouterPrx router, long period)
  14. {
  15. _client = client;
  16. _router = router;
  17. _period = period;
  18. _done = false;
  19. }
  20. public void run()
  21. {
  22. _m.Lock();
  23. try
  24. {
  25. while (!_done)
  26. {
  27. try
  28. {
  29. _router.begin_refreshSession().whenCompleted(
  30. (Ice.Exception ex) =>
  31. {
  32. this.done();
  33. _client.Close();
  34. });
  35. }
  36. catch (Ice.CommunicatorDestroyedException)
  37. {
  38. //
  39. // AMI requests can raise CommunicatorDestroyedException directly.
  40. //
  41. break;
  42. }
  43. if (!_done)
  44. {
  45. _m.TimedWait((int)_period);
  46. }
  47. }
  48. }
  49. finally
  50. {
  51. _m.Unlock();
  52. }
  53. }
  54. public void done()
  55. {
  56. _done = true;
  57. }
  58. private IceClientConnector _client;
  59. private Glacier2.RouterPrx _router;
  60. private long _period;
  61. private bool _done = false;
  62. private readonly IceUtilInternal.Monitor _m = new IceUtilInternal.Monitor();
  63. }
  64. }