Mercurial > hg > Database > Alice
diff src/alice/topology/node/IncomingAbstractHostName.java @ 28:98ab26e09a98
Configuration Manager work and implements reverseKey
author | kazz <kazz@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 17 Jan 2012 08:41:34 +0900 |
parents | 9c6b9e032338 |
children | 2bfb796b0fa1 |
line wrap: on
line diff
--- a/src/alice/topology/node/IncomingAbstractHostName.java Tue Jan 17 03:52:39 2012 +0900 +++ b/src/alice/topology/node/IncomingAbstractHostName.java Tue Jan 17 08:41:34 2012 +0900 @@ -7,16 +7,11 @@ public class IncomingAbstractHostName extends CodeSegment { public DataSegmentReceiver absName = new DataSegmentReceiver(ids, CommandType.PEEK); - private Class<CodeSegment> clazz; - - public IncomingAbstractHostName(Class<CodeSegment> clazz) { - this.clazz = clazz; - } @Override public void run() { String absName = this.absName.val.asRawValue().getString(); - IncomingConnectionInfo cs = new IncomingConnectionInfo(absName, clazz); + IncomingConnectionInfo cs = new IncomingConnectionInfo(absName, 0); cs.hostInfo.setKey("manager", absName); }