Mercurial > hg > Database > Christie
view src/main/java/christie/topology/manager/keepalive/RespondData.java @ 168:c7300be0fff6
fix incomingHosts end message
author | akahori |
---|---|
date | Tue, 22 Jan 2019 16:00:29 +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; } }