/// <summary> /// starts the sender algorithm /// </summary> private void doStart() { ThreadStart threadDelegate = new ThreadStart(doStartRun); senderThread = UDTThreadFactory.get().newThread(threadDelegate); senderThread.Start(); }
public static UDTThreadFactory get() { if (theInstance == null) { theInstance = new UDTThreadFactory(); } return(theInstance); }