2 instantiations of GroupConnectionList
Microsoft.AspNetCore.SignalR.Core (2)
Internal\HubGroupList.cs (2)
14private static readonly GroupConnectionList EmptyGroupConnectionList = new GroupConnectionList(); 59_groups.AddOrUpdate(groupName, _ => AddConnectionToGroup(connection, new GroupConnectionList()),
9 references to GroupConnectionList
Microsoft.AspNetCore.SignalR.Core (9)
Internal\HubGroupList.cs (9)
11private readonly ConcurrentDictionary<string, GroupConnectionList> _groups = 12new ConcurrentDictionary<string, GroupConnectionList>(StringComparer.Ordinal); 14private static readonly GroupConnectionList EmptyGroupConnectionList = new GroupConnectionList(); 20_groups.TryGetValue(groupName, out var group); 32if (_groups.TryGetValue(groupName, out var connections)) 39var groupToRemove = new KeyValuePair<string, GroupConnectionList>(groupName, EmptyGroupConnectionList); 40((ICollection<KeyValuePair<string, GroupConnectionList>>)(_groups)).Remove(groupToRemove); 67private static GroupConnectionList AddConnectionToGroup( 68HubConnectionContext connection, GroupConnectionList group)