refactor(ISenderHandler): Umbenennung in IAuthSenderHandler.

- umbenannt in SendMessageAsync als SendKeyAsync
This commit is contained in:
Developer 02
2025-02-04 20:45:01 +01:00
parent e474cf38d4
commit 319763040c
6 changed files with 11 additions and 11 deletions

View File

@@ -3,9 +3,9 @@ using Microsoft.AspNetCore.SignalR;
namespace DigitalData.Auth.API.Hubs;
public class AuthHub : Hub<IListenHandler>, ISenderHandler
public class AuthHub : Hub<IListenHandler>, IAuthSenderHandler
{
public async Task SendMessageAsync(string user, string message)
public async Task SendKeyAsync(string user, string message)
=> await Clients.All.ReceiveMessageAsync(user, message);
public async Task SendMessageToCaller(string user, string message)