16 references to AckMessage
Microsoft.AspNetCore.Components.Server (1)
src\SignalR\common\Protocols.MessagePack\src\Protocol\MessagePackHubProtocolWorker.cs (1)
288return new AckMessage(ReadInt64(ref reader, "sequenceId"));
Microsoft.AspNetCore.Components.Server.Tests (1)
src\SignalR\common\SignalR.Common\test\Internal\Protocol\MessagePackHubProtocolTestBase.cs (1)
203message: new AckMessage(42),
Microsoft.AspNetCore.SignalR.Client.Core (1)
src\SignalR\common\Shared\MessageBuffer.cs (1)
30private readonly AckMessage _ackMessage = new(0);
Microsoft.AspNetCore.SignalR.Common.Tests (2)
Internal\Protocol\JsonHubProtocolTestsBase.cs (1)
92new JsonProtocolTestData("AckMessage", new AckMessage(102020), true, true, "{\"type\":8,\"sequenceId\":102020}"),
Internal\Protocol\MessagePackHubProtocolTestBase.cs (1)
203message: new AckMessage(42),
Microsoft.AspNetCore.SignalR.Core (1)
src\SignalR\common\Shared\MessageBuffer.cs (1)
30private readonly AckMessage _ackMessage = new(0);
Microsoft.AspNetCore.SignalR.Protocols.Json (1)
Protocol\JsonHubProtocol.cs (1)
891return new AckMessage(sequenceId.Value);
Microsoft.AspNetCore.SignalR.Protocols.MessagePack (1)
Protocol\MessagePackHubProtocolWorker.cs (1)
288return new AckMessage(ReadInt64(ref reader, "sequenceId"));
Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson (1)
Protocol\NewtonsoftJsonHubProtocol.cs (1)
882return new AckMessage(sequenceId.Value);
Microsoft.AspNetCore.SignalR.Tests (7)
HubConnectionHandlerTests.cs (2)
5180await client.SendHubMessageAsync(new AckMessage(234)).DefaultTimeout(); 5218await client.SendHubMessageAsync(new AckMessage(1)).DefaultTimeout();
Internal\MessageBufferTests.cs (5)
70await messageBuffer.AckAsync(new AckMessage(1)); 191await messageBuffer.AckAsync(new AckMessage(1)); 255await messageBuffer.AckAsync(new AckMessage(ackNum)); 308await messageBuffer.AckAsync(new AckMessage(1)); 420var ackTask = messageBuffer.AckAsync(new AckMessage(3));