Fábio wrote:
> Hi,
> 
> I'm working on a slot the instances a object that in turn scans for 
> network computers and send its a file.
> My problem is that I want create another thread only when the previus 
> was finished.
> How I can do this?
> 
> Thanks to all!

You can either

1. Use QThread instead of java.lang.Thread. It has a finished() signal 
that you can connect to and this can in turn start your thread.

1. emit a signal at the end of your Runable's run() function which 
triggers a slot to start the new thread

2. Reimplement Thread and emit a signal / start the other thread after 
the Runnable terminates.

-
Gunnar

_______________________________________________
Qt-jambi-interest mailing list
[email protected]
http://lists.trolltech.com/mailman/listinfo/qt-jambi-interest

Reply via email to