Mercurial > hg > Database > Christie
view src/main/java/christie/topology/manager/keepalive/RespondData.java @ 50:8dfd93810041
fix config and HostMessage
author | akahori |
---|---|
date | Thu, 23 Aug 2018 09:30:36 +0900 |
parents | fd944876257b |
children |
line wrap: on
line source
package christie.topology.manager.keepalive; public class RespondData { public String from; public long time; public RespondData(String str, long t){ from = str; time = t; } }