127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
|
/**
* \brief Creates a new thread with the specified block.
*
* \param block A block which is executed by the thread
* \return A new, autoreleased thread
*/
+ threadWithBlock: (of_thread_block_t)block;
/**
* \brief Creates a new thread with the specified block and object.
*
* \param object An object which is passed for use in the main method or nil
* \param block A block which is executed by the thread
* \return A new, autoreleased thread
*/
+ threadWithObject: (id)object
block: (of_thread_block_t)block;
#endif
/**
* \brief Sets the Thread Local Storage for the specified key.
*
* The specified object is first retained and then the object stored before is
* released. You can specify nil as object if you want the old object to be
|
<
<
<
<
<
<
<
<
<
<
|
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
/**
* \brief Creates a new thread with the specified block.
*
* \param block A block which is executed by the thread
* \return A new, autoreleased thread
*/
+ threadWithBlock: (of_thread_block_t)block;
#endif
/**
* \brief Sets the Thread Local Storage for the specified key.
*
* The specified object is first retained and then the object stored before is
* released. You can specify nil as object if you want the old object to be
|
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
|
/**
* \brief Initializes an already allocated thread with the specified block.
*
* \param block A block which is executed by the thread
* \return An initialized OFThread.
*/
- initWithBlock: (of_thread_block_t)block;
/**
* \brief Initializes an already allocated thread with the specified block and
* object.
*
* \param block A block which is executed by the thread
* \param object An object which is passed for use in the main method or nil
* \return An initialized OFThread.
*/
- initWithObject: (id)object
block: (of_thread_block_t)block;
#endif
/**
* \brief The main routine of the thread. You need to reimplement this!
*
* It can access the object passed to the threadWithObject or initWithObject
* method using the instance variable named object.
|
<
<
<
<
<
<
<
<
<
<
<
|
217
218
219
220
221
222
223
224
225
226
227
228
229
230
|
/**
* \brief Initializes an already allocated thread with the specified block.
*
* \param block A block which is executed by the thread
* \return An initialized OFThread.
*/
- initWithBlock: (of_thread_block_t)block;
#endif
/**
* \brief The main routine of the thread. You need to reimplement this!
*
* It can access the object passed to the threadWithObject or initWithObject
* method using the instance variable named object.
|