I was under the impression that if a component is marked as immediate=true then it would start and run as a singleton once it was satisfied. This is apparently not the case. Is there a way to say once I have been satisfied then start and stay active until shutdown.
@Component(service = {UndertowServer.class},
immediate=true)
public class UndertowServer {
...
[ 69] com.orbis.aardvark.web.services.UndertowServer enabled
[ 28] [satisfied ]
Thank you for any help,
David Daniel

