comparison src/alice/topology/manager/keeparive/TaskInfo.java @ 330:d35ff0f588e8

keep alive may work... but bug exist.
author sugi
date Mon, 31 Mar 2014 22:28:52 +0900
parents 35b4e24e3e02
children
comparison
equal deleted inserted replaced
329:35b4e24e3e02 330:d35ff0f588e8
44 public TaskInfo clone(){ 44 public TaskInfo clone(){
45 TaskInfo task = new TaskInfo(type); 45 TaskInfo task = new TaskInfo(type);
46 task.setInfo(managerKey, returnKey, sleepTime); 46 task.setInfo(managerKey, returnKey, sleepTime);
47 return task; 47 return task;
48 } 48 }
49
50 public void show(){
51 System.out.print(type);
52 System.out.print(" "+ this.sleepTime);
53 System.out.print(" "+ this.managerKey);
54 System.out.println(" "+ this.returnKey);
55 }
49 } 56 }