Example #1
0
        /// <summary>
        /// starts the sender algorithm
        /// </summary>
        private void doStart()
        {
            ThreadStart threadDelegate = new ThreadStart(doStartRun);

            senderThread = UDTThreadFactory.get().newThread(threadDelegate);
            senderThread.Start();
        }
Example #2
0
 public static UDTThreadFactory get()
 {
     if (theInstance == null)
     {
         theInstance = new UDTThreadFactory();
     }
     return(theInstance);
 }