1 write to _hubLifetimeManager
Microsoft.AspNetCore.SignalR.Microbenchmarks (1)
DefaultHubLifetimeManagerBenchmark.cs (1)
25
_hubLifetimeManager
= new DefaultHubLifetimeManager<Hub>(NullLogger<DefaultHubLifetimeManager<Hub>>.Instance);
11 references to _hubLifetimeManager
Microsoft.AspNetCore.SignalR.Microbenchmarks (11)
DefaultHubLifetimeManagerBenchmark.cs (11)
59
_hubLifetimeManager
.OnConnectedAsync(hubConnectionContext).GetAwaiter().GetResult();
60
_hubLifetimeManager
.AddToGroupAsync(connectionId, groupName);
75
return
_hubLifetimeManager
.SendAllAsync("MethodName", Array.Empty<object>());
81
return
_hubLifetimeManager
.SendGroupAsync(_groupNames[0], "MethodName", Array.Empty<object>());
87
return
_hubLifetimeManager
.SendGroupsAsync(_groupNames, "MethodName", Array.Empty<object>());
93
return
_hubLifetimeManager
.SendGroupExceptAsync(_groupNames[0], "MethodName", Array.Empty<object>(), _subsetConnectionIds);
99
return
_hubLifetimeManager
.SendAllExceptAsync("MethodName", Array.Empty<object>(), _subsetConnectionIds);
105
return
_hubLifetimeManager
.SendConnectionAsync(_connectionIds[0], "MethodName", Array.Empty<object>());
111
return
_hubLifetimeManager
.SendConnectionsAsync(_subsetConnectionIds, "MethodName", Array.Empty<object>());
117
return
_hubLifetimeManager
.SendUserAsync(_userIdentifiers[0], "MethodName", Array.Empty<object>());
123
return
_hubLifetimeManager
.SendUsersAsync(_userIdentifiers, "MethodName", Array.Empty<object>());