291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
|
*/
- (nullable id)main;
/**
* @brief This routine is executed when the thread's main method has finished
* executing or terminate has been called.
*
* @note Be sure to call [super handleTermination]!
*/
- (void)handleTermination OF_REQUIRES_SUPER;
/**
* @brief Starts the thread.
*
* @throw OFStartThreadFailedException Starting the thread failed
|
|
|
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
|
*/
- (nullable id)main;
/**
* @brief This routine is executed when the thread's main method has finished
* executing or terminate has been called.
*
* @note Be sure to call `[super handleTermination]`!
*/
- (void)handleTermination OF_REQUIRES_SUPER;
/**
* @brief Starts the thread.
*
* @throw OFStartThreadFailedException Starting the thread failed
|