5 instantiations of RedisGroupCommand
Microsoft.AspNetCore.SignalR.Microbenchmarks (1)
RedisProtocolBenchmark.cs (1)
36_groupCommand = new RedisGroupCommand(id: 42, serverName: "Server", GroupAction.Add, groupName: "group", connectionId: "connection");
Microsoft.AspNetCore.SignalR.StackExchangeRedis (2)
Internal\RedisProtocol.cs (1)
218return new RedisGroupCommand(id, serverName, action, groupName, connectionId);
RedisHubLifetimeManager.cs (1)
351var message = RedisProtocol.WriteGroupCommand(new RedisGroupCommand(id, _serverName, action, groupName, connectionId));
Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests (2)
RedisProtocolTests.cs (2)
59CreateTestData("GroupAdd", new RedisGroupCommand(42, "S", GroupAction.Add, "G", "C" ), 0x95, 0x2A, 0xA1, (byte)'S', 0x01, 0xA1, (byte)'G', 0xA1, (byte)'C'), 60CreateTestData("GroupRemove", new RedisGroupCommand(42, "S", GroupAction.Remove, "G", "C" ), 0x95, 0x2A, 0xA1, (byte)'S', 0x02, 0xA1, (byte)'G', 0xA1, (byte)'C'),
6 references to RedisGroupCommand
Microsoft.AspNetCore.SignalR.Microbenchmarks (1)
RedisProtocolBenchmark.cs (1)
17private RedisGroupCommand _groupCommand;
Microsoft.AspNetCore.SignalR.StackExchangeRedis (3)
Internal\RedisProtocol.cs (2)
92public static byte[] WriteGroupCommand(RedisGroupCommand command) 205public static RedisGroupCommand ReadGroupCommand(ReadOnlyMemory<byte> data)
RedisHubLifetimeManager.cs (1)
487var groupMessage = RedisProtocol.ReadGroupCommand(channelMessage.Message);
Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests (2)
RedisProtocolTests.cs (2)
57private static readonly Dictionary<string, ProtocolTestData<RedisGroupCommand>> _groupCommandTestData = new[] 72var decoded = RedisProtocol.ReadGroupCommand(testData.Encoded);