BB.Caching.SharedCache.GetAllWriteConnections C# (CSharp) Method

GetAllWriteConnections() public method

Gets all read-write connections.
public GetAllWriteConnections ( ) : StackExchange.Redis.ConnectionMultiplexer[]
return StackExchange.Redis.ConnectionMultiplexer[]
        public ConnectionMultiplexer[] GetAllWriteConnections()
        {
            return this._consistentHashRing.GetAvailableNodes()
                .Select(n => n.GetWriteMultiplexer())
                .Distinct()
                .ToArray();
        }