Example usage for org.springframework.data.redis.connection.lettuce LettuceConverters partitionsToClusterNodes

List of usage examples for org.springframework.data.redis.connection.lettuce LettuceConverters partitionsToClusterNodes

Introduction

In this page you can find the example usage for org.springframework.data.redis.connection.lettuce LettuceConverters partitionsToClusterNodes.

Prototype

public static List<RedisClusterNode> partitionsToClusterNodes(Partitions partitions) 

Source Link

Usage

From source file:org.springframework.data.redis.connection.lettuce.LettuceClusterConnection.java

@Override
public List<RedisClusterNode> clusterGetNodes() {
    return LettuceConverters.partitionsToClusterNodes(getPartitions());
}