API  1.0.0
CPTimer.h
Go to the documentation of this file.
1 
2 @interface CPTimer : CPObject
3 {
4  CPTimeInterval _timeInterval;
5  CPInvocation _invocation;
6  Function _callback;
7 
8  BOOL _repeats;
9  BOOL _isValid;
10  CPDate _fireDate;
11  id _userInfo;
12 }
13 @end
A representation of a single point in time.
Definition: CPDate.h:2
An object representation of a message.
Definition: CPInvocation.h:2
A timer object that can send a message after the given time interval.
Definition: CPTimer.h:2