RT state managment and rectangle support

This commit is contained in:
2026-02-16 16:14:25 +01:00
parent 0f0418dee3
commit d9caeb2209
21 changed files with 459 additions and 5 deletions

View File

@@ -1,9 +1,19 @@
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.SignalR;
namespace AipsRT.Hubs;
[Authorize]
public class TestHub : Hub
{
public override async Task OnConnectedAsync()
{
Console.WriteLine($"LOOOOOOOOOG: [{Context.UserIdentifier}] User identifier connected");
Console.WriteLine($"LOOOOOG222: [{Context.User?.Identity?.Name}] User identity name connected");
await base.OnConnectedAsync();
}
public async Task SendText(string text)
{
await Clients.All.SendAsync("ReceiveText", text);