3 writes to ConnectionFactory
Microsoft.AspNetCore.SignalR.Microbenchmarks (1)
RedisHubLifetimeManagerBenchmark.cs (1)
42
ConnectionFactory
= _ => Task.FromResult<IConnectionMultiplexer>(new TestConnectionMultiplexer(server))
Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests (2)
RedisHubLifetimeManagerTests.cs (2)
32
var options = new RedisOptions() {
ConnectionFactory
= async (t) => await Task.FromResult(new TestConnectionMultiplexer(server)) };
106
ConnectionFactory
= _ => throw new ApplicationException("throw from connect")
1 reference to ConnectionFactory
Microsoft.AspNetCore.SignalR.StackExchangeRedis (1)
RedisOptions.cs (1)
32
var factory =
ConnectionFactory
;