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

com.power4j.fist.redisson.common.DefaultNameGenerator Maven / Gradle / Ivy

The newest version!
package com.power4j.fist.redisson.common;

/**
 * @author CJ ([email protected])
 * @since 1.0
 */
public class DefaultNameGenerator implements NameGenerator {

	@Override
	public String generate(RedisNamespace namespace, String name) {
		return namespace.getValue() + "::" + name;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy