Move ResourcePools to BaseKernel/IKernel
This commit is contained in:
parent
8956f6ff4a
commit
4c1c717824
|
@ -455,5 +455,12 @@ namespace MediaBrowser.Common.Kernel
|
|||
{
|
||||
return GetXmlConfiguration(typeof(T), path) as T;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Limits simultaneous access to various resources
|
||||
/// </summary>
|
||||
/// <value>The resource pools.</value>
|
||||
public ResourcePool ResourcePools { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -117,5 +117,11 @@ namespace MediaBrowser.Common.Kernel
|
|||
/// <param name="path">The path.</param>
|
||||
/// <returns>System.Object.</returns>
|
||||
object GetXmlConfiguration(Type type, string path);
|
||||
|
||||
/// <summary>
|
||||
/// Limits simultaneous access to various resources
|
||||
/// </summary>
|
||||
/// <value>The resource pools.</value>
|
||||
ResourcePool ResourcePools { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -278,12 +278,6 @@ namespace MediaBrowser.Controller
|
|||
/// <value>The user data repository.</value>
|
||||
public IUserDataRepository UserDataRepository { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Limits simultaneous access to various resources
|
||||
/// </summary>
|
||||
/// <value>The resource pools.</value>
|
||||
public ResourcePool ResourcePools { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the UDP server port number.
|
||||
/// </summary>
|
||||
|
|
Loading…
Reference in New Issue
Block a user