public static Thread ExecuteAfter(string threadName, long timeInMillis, IRunnable
     runnable)
 {
     Thread t = new _Thread_96(timeInMillis, runnable);
     t.SetName(threadName);
     t.SetDaemon(true);
     t.Start();
     return t;
 }
Example #2
0
        public static Thread ExecuteAfter(string threadName, long timeInMillis, IRunnable
                                          runnable)
        {
            Thread t = new _Thread_96(timeInMillis, runnable);

            t.SetName(threadName);
            t.SetDaemon(true);
            t.Start();
            return(t);
        }