Changeset 93 for branches/supervisor/src/test
- Timestamp:
- 10/01/13 15:34:32 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/supervisor/src/test/java/omq/test/supervisor/SleepTest.java
r92 r93 15 15 16 16 @BeforeClass 17 public static void Server() throws Exception {System.out.println("hola"); 17 public static void Server() throws Exception { 18 System.out.println("hola"); 18 19 Properties env1 = new Properties(); 19 20 env1.setProperty(ParameterQueue.USER_NAME, "guest"); … … 59 60 Supervisor supervisor = broker.lookup("supervisor", Supervisor.class); 60 61 61 OmqSettings settings = new OmqSettings("sleep", SleepImpl.class.getName(), env, 1, 70, 2);62 OmqSettings settings = new OmqSettings("sleep", SleepImpl.class.getName(), env, 20, 20, 2); 62 63 supervisor.spawnObject(settings); 63 64 64 65 Sleep sleep = broker.lookup("sleep", Sleep.class); 65 66 66 for (int i = 0; i < 50; i++) {67 for (int i = 0; i < 10; i++) { 67 68 sleep.sleep(); 68 69 } 69 70 Thread.sleep(5000); 70 for (int i = 0; i < 50; i++) {71 for (int i = 0; i < 20; i++) { 71 72 sleep.sleep(); 72 73 } 73 74 74 75 Thread.sleep(100000); 75 76 }
Note: See TracChangeset
for help on using the changeset viewer.