com.cjy.fat.redis.operation.ServiceSetOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fat-common Show documentation
Show all versions of fat-common Show documentation
fat , the resolver of soa transaction
package com.cjy.fat.redis.operation;
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);
}