Renamed WebSocketServiceManager.cs to WebSocketSessionManager.cs, added IWebSocketSession.cs and modified WebSocketService.cs

This commit is contained in:
sta
2013-09-13 16:54:41 +09:00
parent 0eb8813274
commit e3d5dea096
14 changed files with 418 additions and 343 deletions

View File

@@ -146,11 +146,10 @@ namespace WebSocketSharp.Server
#region Public Properties
/// <summary>
/// Gets or sets a value indicating whether the server cleans up the inactive WebSocket service
/// instances periodically.
/// Gets or sets a value indicating whether the server cleans up the inactive sessions periodically.
/// </summary>
/// <value>
/// <c>true</c> if the server cleans up the inactive WebSocket service instances every 60 seconds;
/// <c>true</c> if the server cleans up the inactive sessions every 60 seconds;
/// otherwise, <c>false</c>. The default value is <c>true</c>.
/// </value>
public bool KeepClean {
@@ -164,10 +163,10 @@ namespace WebSocketSharp.Server
}
/// <summary>
/// Gets the collection of paths to the WebSocket services that the server provides.
/// Gets the collection of each path to the WebSocket services that the server provides.
/// </summary>
/// <value>
/// An IEnumerable&lt;string&gt; that contains the collection of paths.
/// An IEnumerable&lt;string&gt; that contains the collection of each path to the WebSocket services.
/// </value>
public IEnumerable<string> ServicePaths {
get {