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

com.cjy.fat.redis.ServiceSetOperation Maven / Gradle / Ivy

package com.cjy.fat.redis;

public interface ServiceSetOperation {
	
	/**
	 *  加入服务serviceSet
	 * @param txKey
	 * @param serviceName
	 */
	public void addToServiceSet(String txKey , String serviceName);
	
	/**
	 *  获取serviceSet的数量
	 * @return
	 */
	public long sizeServiceSet(String txKey);
	
	public void addToServiceSet(String txKey , String[] serviceNameArray);
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy