3 instantiations of HubConnectionStore
Microsoft.AspNetCore.SignalR.Core (1)
DefaultHubLifetimeManager.cs (1)
18private readonly HubConnectionStore _connections = new HubConnectionStore();
Microsoft.AspNetCore.SignalR.StackExchangeRedis (2)
Internal\RedisSubscriptionManager.cs (1)
26var subscription = _subscriptions.GetOrAdd(id, _ => new HubConnectionStore());
RedisHubLifetimeManager.cs (1)
26private readonly HubConnectionStore _connections = new HubConnectionStore();
11 references to HubConnectionStore
Microsoft.AspNetCore.SignalR.Core (4)
DefaultHubLifetimeManager.cs (1)
18private readonly HubConnectionStore _connections = new HubConnectionStore();
HubConnectionStore.cs (3)
67/// An <see cref="IEnumerator"/> over the <see cref="HubConnectionStore"/> 74/// Constructs the <see cref="Enumerator"/> over the <see cref="HubConnectionStore"/>. 77public Enumerator(HubConnectionStore hubConnectionList)
Microsoft.AspNetCore.SignalR.StackExchangeRedis (7)
Internal\RedisSubscriptionManager.cs (5)
10private readonly ConcurrentDictionary<string, HubConnectionStore> _subscriptions = new ConcurrentDictionary<string, HubConnectionStore>(StringComparer.Ordinal); 13public async Task AddSubscriptionAsync(string id, HubConnectionContext connection, Func<string, HubConnectionStore, Task> subscribeMethod) 26var subscription = _subscriptions.GetOrAdd(id, _ => new HubConnectionStore()); 48if (!_subscriptions.TryGetValue(id, out var subscription))
RedisHubLifetimeManager.cs (2)
26private readonly HubConnectionStore _connections = new HubConnectionStore(); 613private async Task SubscribeToGroupAsync(string groupChannel, HubConnectionStore groupConnections)