removed transient life-cycle and restart-within-time attribute

This commit is contained in:
jboner 2009-11-11 22:48:49 +01:00
parent 765a11fb67
commit 7dee21a937
25 changed files with 528 additions and 310 deletions

View file

@ -12,11 +12,11 @@ public class Boot {
new Component[] {
new Component(
sample.java.SimpleService.class,
new LifeCycle(new Permanent(), 1000),
new LifeCycle(new Permanent()),
1000),
new Component(
sample.java.PersistentSimpleService.class,
new LifeCycle(new Permanent(), 1000),
new LifeCycle(new Permanent()),
1000)
}).supervise();
}