Method Thread():execute() Foundation

Reserved method for use by subclasses of the Thread class.

Syntax
:execute( [<xParamList,...>] )
Parameters
<xParamList>
<xParamList> is a comma-separated list of any expressions which are passed to the method :execute().
Return

This method does not have a return value in the usual sense because it runs asynchronously. The RETURN value of :execute() is assigned to the instance variable :result where it can be retrieved from when the thread has ended.

Description

The method :execute() can only be executed by subclasses of the class Thread since it has the PROTECTED visibility attribute. By subclassing, the thread class can be designed to accommodate specific needs of the programmer. When the method :start() is called without the first parameter, all subsequent parameters are passed to the method :execute() and appear in <xParamList>. The program code of this method is then executed in the separate thread which is maintained by the Thread object.

Feedback

If you see anything in the documentation that is not correct, does not match your experience with the particular feature or requires further clarification, please use this form to report a documentation issue.