/**
* Instantiates a new worker metadata.
*
* @param workerId the worker id
* @param listenAddress the listen address
* @param listenPort the listen port
* @param serviceName the service name
*/
public MetaData(@JsonProperty
UUID workerId, @JsonProperty
String listenAddress, @JsonProperty
int listenPort, @JsonProperty
String serviceName) {
this.workerId = workerId;
this.listenAddress = listenAddress;
this.listenPort = listenPort;
this.serviceName = serviceName;
}
MetaData.java 文件源码
java
阅读 19
收藏 0
点赞 0
评论 0
项目:redirector
作者:
评论列表
文章目录