2003/09/23 21:16:10
[org.ibex.core.git] / src / org / xwt / Message.java
index ba856cb..8162f0c 100644 (file)
@@ -33,7 +33,10 @@ public interface Message {
         /** true iff latency-sensitive UI work is being done; signals the networking code to yield */
         public static volatile boolean working = false;
 
-        private Q() { start(); }
+        private Q() { }
+
+        /** invoked by Main */
+        public static void startQ() { singleton.start(); }
 
         /** pending events */
         private static Queue events = new Queue(50);