Changeset 494 for DCWoRMS/trunk/src/gridsim
- Timestamp:
- 10/09/12 15:04:11 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/trunk/src/gridsim/dcworms/DCWormsTags.java
r493 r494 8 8 public class DCWormsTags extends GridSimTags { 9 9 10 protected static final int GSSIMBASE = 600;10 protected static final int DCWORMSBASE = 600; 11 11 12 public static final int UPDATE= GSSIMBASE - 1;12 public static final int UPDATE= DCWORMSBASE - 1; 13 13 14 public static final int TIMER = GSSIMBASE + 1;14 public static final int TIMER = DCWORMSBASE + 1; 15 15 16 public static final int TASK_READY_FOR_EXECUTION = GSSIMBASE + 2;16 public static final int TASK_READY_FOR_EXECUTION = DCWORMSBASE + 2; 17 17 18 public static final int TASK_EXECUTION_FINISHED = GSSIMBASE + 3;18 public static final int TASK_EXECUTION_FINISHED = DCWORMSBASE + 3; 19 19 20 20 … … 22 22 * Message tag: query resource about its current state in object form (load, queues, etc.) 23 23 */ 24 public static final int QUERY_RESOURCE_DESC = GSSIMBASE + 4;24 public static final int QUERY_RESOURCE_DESC = DCWORMSBASE + 4; 25 25 26 public static final int QUERY_RESOURCE_DESC_RESULT = GSSIMBASE + 5;26 public static final int QUERY_RESOURCE_DESC_RESULT = DCWORMSBASE + 5; 27 27 28 public static final int TASK_REQUESTED_TIME_EXPIRED = GSSIMBASE + 6;28 public static final int TASK_REQUESTED_TIME_EXPIRED = DCWORMSBASE + 6; 29 29 30 30
Note: See TracChangeset
for help on using the changeset viewer.