void startProducerThread(IThreaded & main) { CThreaded * thread = new CThreaded("ReadAheadThread", &main); threads.append(*thread); thread->start(); }
virtual void startStrand(IStrandThreaded & strand) { CThreaded * thread = new CThreaded("Strand", &strand); threads.append(*thread); thread->start(); }