/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/SignalR/server/StackExchangeRedis/test/StatefulHub.cs
12 строк
353 B
Brennan
Fix preserving messages for stateful reconnect with backplane (#60900)
08 апр 2025, 00:28
Не верифицирован
08 апр 2025, 00:28
8491a27
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests; public class StatefulHub : Hub { public Task SendToAll(string message) { return Clients.All.SendAsync("SendToAll", message); } }