Mercurial > hg > Database > Alice
annotate src/main/java/alice/topology/HostMessage.java @ 428:93995b7a9a05 dispose
change HostMessage field from parentAbsName to remoteAbsName
author | sugi |
---|---|
date | Tue, 22 Jul 2014 12:56:25 +0900 |
parents | faae3e976cc1 |
children | c7c57f8d7538 |
rev | line source |
---|---|
345 | 1 package alice.topology; |
2 | |
3 import org.msgpack.annotation.Message; | |
4 | |
5 @Message | |
6 public class HostMessage { | |
419 | 7 |
8 public String name; | |
9 public int port; | |
10 public String connectionName; | |
11 public String reverseName; | |
428
93995b7a9a05
change HostMessage field from parentAbsName to remoteAbsName
sugi
parents:
424
diff
changeset
|
12 |
419 | 13 public String absName; |
428
93995b7a9a05
change HostMessage field from parentAbsName to remoteAbsName
sugi
parents:
424
diff
changeset
|
14 public String remoteAbsName; |
424
faae3e976cc1
change cookie LinkedLIst Type from String.class to HostMessage.class
sugi
parents:
419
diff
changeset
|
15 public String cookie; |
345 | 16 |
419 | 17 public HostMessage() { } |
18 public HostMessage(String name, int port) { | |
19 this.name = name; | |
20 this.port = port; | |
21 } | |
22 | |
23 public HostMessage(String name, int port, String connectionName, String reverseName) { | |
24 this.name = name; | |
25 this.port = port; | |
26 this.connectionName = connectionName; | |
27 this.reverseName = reverseName; | |
28 } | |
29 | |
345 | 30 } |