121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
-
+
|
* Terminates the current thread, letting it return nil.
*/
+ (void)terminate;
/**
* Terminates the current thread, letting it return the specified object.
*
* \param The object which the terminated thread will return
* \param obj The object which the terminated thread will return
*/
+ (void)terminateWithObject: (id)obj;
/**
* \param obj An object that is passed to the main method as a copy or nil
* \return An initialized OFThread.
*/
|