Mercurial > hg > Members > tatsuki > Alice
comparison src/alice/topology/manager/TopologyFinish.java @ 268:709936c00c89
creating reconnect manager
author | sugi |
---|---|
date | Sun, 18 Aug 2013 02:13:52 +0900 |
parents | fac206b7849c |
children | 9982e1c4f099 |
comparison
equal
deleted
inserted
replaced
267:fac206b7849c | 268:709936c00c89 |
---|---|
1 package alice.topology.manager; | 1 package alice.topology.manager; |
2 | 2 |
3 import alice.codesegment.CodeSegment; | 3 import alice.codesegment.CodeSegment; |
4 import alice.datasegment.CommandType; | 4 import alice.datasegment.CommandType; |
5 import alice.datasegment.Receiver; | 5 import alice.datasegment.Receiver; |
6 import alice.topology.manager.reconnection.ReceiveConnectionError; | 6 import alice.topology.manager.reconnection.ReceiveError; |
7 | 7 |
8 public class TopologyFinish extends CodeSegment { | 8 public class TopologyFinish extends CodeSegment { |
9 public Receiver finish = ids.create(CommandType.TAKE); | 9 public Receiver finish = ids.create(CommandType.TAKE); |
10 @Override | 10 @Override |
11 public void run() { | 11 public void run() { |
12 new ReceiveConnectionError(); | 12 new ReceiveError(); |
13 } | 13 } |
14 | 14 |
15 } | 15 } |