All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.playtika.testcontainer.redis.wait.DefaultRedisClusterWaitStrategy Maven / Gradle / Ivy

There is a newer version: 3.1.9
Show newest version
package com.playtika.testcontainer.redis.wait;

import com.playtika.testcontainer.redis.RedisProperties;
import org.testcontainers.containers.wait.strategy.WaitAllStrategy;

public class DefaultRedisClusterWaitStrategy extends WaitAllStrategy implements RedisClusterWaitStrategy {
    public DefaultRedisClusterWaitStrategy(RedisProperties properties) {
        withStrategy(new RedisStatusCheck(properties))
                .withStrategy(new RedisClusterStatusCheck(properties));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy