mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-14 21:25:05 -05:00
14 lines
271 B
C
14 lines
271 B
C
|
/**
|
||
|
* Author: Timothy Prepscius
|
||
|
* License: BSD + keep my name in the code!
|
||
|
*/
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
@interface WorkerThread : NSObject
|
||
|
|
||
|
- (void)performSelector:(SEL)selector withTarget:(id)target withObject:(id)object;
|
||
|
- (void)invalidate;
|
||
|
- (bool)isFinished;
|
||
|
|
||
|
@end
|