Hi Jason, i must confess that i have no idea what the createThread function is for (we should ask Stefan, as he added this function). The only thing which i know for sure is that those threads are only started on start up (onLoad function of the IVR factory...).
But you can use just plain normal python threads. For this, have a look at: http://docs.python.org/lib/module-threading.html http://docs.python.org/lib/module-thread.html Cheers Raphael. Jason Penton wrote: > Hi * > > can somebody give me a heads up on creating a thread in python app for > SEMS > > I have the following: > > class TestThread: > def run(self): > info("test thread executing") > > > #create test thread > testThread = TestThread() > createThread(testThread) > > the problem is that the it seems the thread never executes the code??????? > > cheers > Jason > > > > ------------------------------------------------------------------------ > > _______________________________________________ > Semsdev mailing list > [email protected] > http://lists.iptel.org/mailman/listinfo/semsdev > _______________________________________________ Semsdev mailing list [email protected] http://lists.iptel.org/mailman/listinfo/semsdev
