You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Framework/Connected.Caching/Net/CacheHub.cs

12 lines
281 B

using Connected.Net.Hubs;
namespace Connected.Caching.Net;
//TODO: implement authorization and add logic to reject connections if not an endpoint server
internal class CacheHub : StatefulHub<CacheNotificationArgs>
{
public CacheHub(CacheServer server) : base(server)
{
}
}