brooklyn.entity.nosql.redis.RedisSlaveImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of brooklyn-software-nosql Show documentation
Show all versions of brooklyn-software-nosql Show documentation
Brooklyn entities for NoSQL data store software entities
package brooklyn.entity.nosql.redis;
/**
* A {@link RedisStore} configured as a slave.
*/
public class RedisSlaveImpl extends RedisStoreImpl implements RedisSlave {
public RedisSlaveImpl() {
}
@Override
public RedisStore getMaster() {
return getConfig(MASTER);
}
}