API  1.0.0
CPRunLoop.h
Go to the documentation of this file.
1 
2 @interface CPRunLoop : CPObject
3 {
4  BOOL _runLoopLock;
5 
6  Object _timersForModes; //should be a dictionary to allow lookups by mode
7  Object _nativeTimersForModes;
8  CPDate _nextTimerFireDatesForModes;
9  BOOL _didAddTimer;
10  CPDate _effectiveDate;
11 
12  CPArray _orderedPerforms;
13  int _runLoopInsuranceTimer;
14  CPArray _observers;
15 }
16 @end
A representation of a single point in time.
Definition: CPDate.h:2
The main run loop for the application.
Definition: CPRunLoop.h:2