diff --git a/Example2/Program.cs b/Example2/Program.cs index 7b56e27d..07bf6427 100644 --- a/Example2/Program.cs +++ b/Example2/Program.cs @@ -26,7 +26,7 @@ namespace Example2 { #if DEBUG wssv.Log.Level = LogLevel.TRACE; #endif - //wssv.Sweeping = false; + //wssv.KeepClean = false; wssv.Start (); Console.WriteLine ( @@ -45,7 +45,7 @@ namespace Example2 { //var file = ConfigurationManager.AppSettings ["ServerCertFile"]; //var password = ConfigurationManager.AppSettings ["CertFilePassword"]; //wssv.Certificate = new X509Certificate2 (file, password); - //wssv.Sweeping = false; + //wssv.KeepClean = false; wssv.AddWebSocketService ("/Echo"); wssv.AddWebSocketService ("/Chat"); //wssv.AddWebSocketService ("/エコー"); diff --git a/Example3/Program.cs b/Example3/Program.cs index 4dd310bb..e18c451a 100644 --- a/Example3/Program.cs +++ b/Example3/Program.cs @@ -17,7 +17,7 @@ namespace Example3 _httpsv.Log.Level = LogLevel.TRACE; #endif _httpsv.RootPath = ConfigurationManager.AppSettings ["RootPath"]; - //_httpsv.Sweeping = false; + //_httpsv.KeepClean = false; _httpsv.AddWebSocketService ("/Echo"); _httpsv.AddWebSocketService ("/Chat"); diff --git a/websocket-sharp/Server/HttpServer.cs b/websocket-sharp/Server/HttpServer.cs index c4f42aae..fdde09ee 100644 --- a/websocket-sharp/Server/HttpServer.cs +++ b/websocket-sharp/Server/HttpServer.cs @@ -96,6 +96,24 @@ namespace WebSocketSharp.Server } } + /// + /// Gets or sets a value indicating whether the server cleans up the inactive WebSocket service + /// instances periodically. + /// + /// + /// true if the server cleans up the inactive WebSocket service instances every 60 seconds; + /// otherwise, false. The default value is true. + /// + public bool KeepClean { + get { + return _svcHosts.KeepClean; + } + + set { + _svcHosts.KeepClean = value; + } + } + /// /// Gets the logging functions. /// @@ -155,24 +173,6 @@ namespace WebSocketSharp.Server } } - /// - /// Gets or sets a value indicating whether the server cleans up the inactive WebSocket service - /// instances periodically. - /// - /// - /// true if the server cleans up the inactive WebSocket service instances every 60 seconds; - /// otherwise, false. The default value is true. - /// - public bool Sweeping { - get { - return _svcHosts.Sweeping; - } - - set { - _svcHosts.Sweeping = value; - } - } - #endregion #region Public Events @@ -412,8 +412,8 @@ namespace WebSocketSharp.Server var svcHost = new WebSocketServiceHost (_logger); svcHost.Uri = absPath.ToUri (); - if (!Sweeping) - svcHost.Sweeping = false; + if (!KeepClean) + svcHost.KeepClean = false; _svcHosts.Add (absPath, svcHost); } diff --git a/websocket-sharp/Server/IServiceHost.cs b/websocket-sharp/Server/IServiceHost.cs index 1b3ed75d..43988ff6 100644 --- a/websocket-sharp/Server/IServiceHost.cs +++ b/websocket-sharp/Server/IServiceHost.cs @@ -46,7 +46,7 @@ namespace WebSocketSharp.Server { /// true if the WebSocket service host cleans up the inactive service instances periodically; /// otherwise, false. /// - bool Sweeping { get; set; } + bool KeepClean { get; set; } /// /// Binds the specified to a instance. diff --git a/websocket-sharp/Server/ServiceHostManager.cs b/websocket-sharp/Server/ServiceHostManager.cs index f9ad6a74..76a1f6f8 100644 --- a/websocket-sharp/Server/ServiceHostManager.cs +++ b/websocket-sharp/Server/ServiceHostManager.cs @@ -35,8 +35,8 @@ namespace WebSocketSharp.Server { #region Private Fields + private bool _keepClean; private Dictionary _svcHosts; - private bool _sweeping; #endregion @@ -44,8 +44,8 @@ namespace WebSocketSharp.Server { public ServiceHostManager() { + _keepClean = true; _svcHosts = new Dictionary(); - _sweeping = true; } #endregion @@ -58,6 +58,21 @@ namespace WebSocketSharp.Server { } } + public bool KeepClean { + get { + return _keepClean; + } + + set { + if (_keepClean ^ value) + { + _keepClean = value; + foreach (var svcHost in _svcHosts.Values) + svcHost.KeepClean = value; + } + } + } + public IEnumerable Paths { get { return _svcHosts.Keys; @@ -70,21 +85,6 @@ namespace WebSocketSharp.Server { } } - public bool Sweeping { - get { - return _sweeping; - } - - set { - if (_sweeping ^ value) - { - _sweeping = value; - foreach (var svcHost in _svcHosts.Values) - svcHost.Sweeping = value; - } - } - } - #endregion #region Public Methods diff --git a/websocket-sharp/Server/WebSocketServer.cs b/websocket-sharp/Server/WebSocketServer.cs index 53f2865e..4f2926db 100644 --- a/websocket-sharp/Server/WebSocketServer.cs +++ b/websocket-sharp/Server/WebSocketServer.cs @@ -144,6 +144,24 @@ namespace WebSocketSharp.Server { #region Public Properties + /// + /// Gets or sets a value indicating whether the server cleans up the inactive WebSocket service + /// instances periodically. + /// + /// + /// true if the server cleans up the inactive WebSocket service instances every 60 seconds; + /// otherwise, false. The default value is true. + /// + public bool KeepClean { + get { + return _svcHosts.KeepClean; + } + + set { + _svcHosts.KeepClean = value; + } + } + /// /// Gets the collection of paths associated with the every WebSocket services that the server provides. /// @@ -161,24 +179,6 @@ namespace WebSocketSharp.Server { } } - /// - /// Gets or sets a value indicating whether the server cleans up the inactive WebSocket service - /// instances periodically. - /// - /// - /// true if the server cleans up the inactive WebSocket service instances every 60 seconds; - /// otherwise, false. The default value is true. - /// - public bool Sweeping { - get { - return _svcHosts.Sweeping; - } - - set { - _svcHosts.Sweeping = value; - } - } - #endregion #region Protected Methods @@ -238,8 +238,8 @@ namespace WebSocketSharp.Server { ? new Uri(BaseUri, absPath) : absPath.ToUri(); - if (!Sweeping) - svcHost.Sweeping = false; + if (!KeepClean) + svcHost.KeepClean = false; _svcHosts.Add(absPath, svcHost); } diff --git a/websocket-sharp/Server/WebSocketServiceHost.cs b/websocket-sharp/Server/WebSocketServiceHost.cs index 31a0663a..92b2db45 100644 --- a/websocket-sharp/Server/WebSocketServiceHost.cs +++ b/websocket-sharp/Server/WebSocketServiceHost.cs @@ -191,13 +191,13 @@ namespace WebSocketSharp.Server { /// true if the server cleans up the inactive WebSocket service instances every 60 seconds; /// otherwise, false. The default value is true. /// - public bool Sweeping { + public bool KeepClean { get { - return _sessions.Sweeping; + return _sessions.KeepClean; } set { - _sessions.Sweeping = value; + _sessions.KeepClean = value; } } diff --git a/websocket-sharp/Server/WebSocketServiceManager.cs b/websocket-sharp/Server/WebSocketServiceManager.cs index 6f9335af..6f23ad28 100644 --- a/websocket-sharp/Server/WebSocketServiceManager.cs +++ b/websocket-sharp/Server/WebSocketServiceManager.cs @@ -138,10 +138,10 @@ namespace WebSocketSharp.Server /// the inactive instances periodically. /// /// - /// true if the cleans up - /// the inactive instances every 60 seconds; otherwise, false. + /// true if the cleans up the inactive + /// instances every 60 seconds; otherwise, false. /// - public bool Sweeping { + public bool KeepClean { get { return _sweepTimer.Enabled; }