Improve documentation
[lgpl/argeo-commons.git] / org.argeo.init / src / org / argeo / init / RuntimeContext.java
index 1d3c743ca765b85b564a8cf9f8ff213158463a79..d83f2ca1c22cb04bf7fad1a1a95e1ce575d256b5 100644 (file)
@@ -1,7 +1,10 @@
 package org.argeo.init;
 
+/** A runtime context with a life cycle. */
 public interface RuntimeContext extends Runnable {
+       /** Wait until this runtime context has closed. */
        void waitForStop(long timeout) throws InterruptedException;
 
+       /** Close this runtime context. */
        void close() throws Exception;
 }