Up

EOEventCenter class documentation

Authors

Generated by ayers

Contents -

  1. Software documentation for the EOEventCenter class
  2. Software documentation for the NSObject(EOEventRecordingHandler) informal protocol
  3. Software documentation for the EOEventRecordingHandler protocol
  4. EOEventCenter variables
  5. EOEventCenter functions

Software documentation for the EOEventCenter class

EOEventCenter : NSObject

Declared in:
EOControl/EOEventCenter.h
WARNING!!! This class is currently completely unimplemented.

Instance Variables

Method summary

allCenters 

+ (NSArray*) allCenters;
Description forthcoming.

allEvents 

+ (NSArray*) allEvents;
Description forthcoming.

cancelEvent: 

+ (void) cancelEvent: (EOEvent*)event;
Description forthcoming.

currentCenter 

+ (EOEventCenter*) currentCenter;
Description forthcoming.

eventsOfClass: type: 

+ (NSArray*) eventsOfClass: (Class)eventClass type: (NSString*)type;
Description forthcoming.

markAtomicEvent: info: 

+ (void) markAtomicEvent: (EOEvent*)event info: (id)info;
Description forthcoming.

markEndOfEvent: 

+ (void) markEndOfEvent: (EOEvent*)event;
Description forthcoming.

markStartOfEvent: info: 

+ (void) markStartOfEvent: (EOEvent*)event info: (id)info;
Description forthcoming.

newEventOfClass: type: 

+ (id) newEventOfClass: (Class)eventClass type: (NSString*)type;
Description forthcoming.

recordsEventsForClass: 

+ (BOOL) recordsEventsForClass: (Class)eventClass;
Description forthcoming.

registerEventClass: classPointer: 

+ (void) registerEventClass: (Class)eventClass classPointer: (Class*)classPtr;
Description forthcoming.

registerEventClass: handler: 

+ (void) registerEventClass: (Class)eventClass handler: (id<EOEventRecordingHandler>)handler;
Description forthcoming.

registeredEventClasses 

+ (NSArray*) registeredEventClasses;
Description forthcoming.

resetLogging 

+ (void) resetLogging;
Description forthcoming.

resumeLogging 

+ (void) resumeLogging;
Description forthcoming.

rootEvents 

+ (NSArray*) rootEvents;
Description forthcoming.

rootEventsByDuration 

+ (NSArray*) rootEventsByDuration;
Description forthcoming.

setRecordsEvents: forClass: 

+ (void) setRecordsEvents: (BOOL)flag forClass: (Class)eventClass;
Description forthcoming.

suspendLogging 

+ (void) suspendLogging;
Description forthcoming.

allEvents 

- (NSArray*) allEvents;
Description forthcoming.

eventsOfClass: type: 

- (NSArray*) eventsOfClass: (Class)eventClass type: (NSString*)type;
Description forthcoming.

resetLogging 

- (void) resetLogging;
Description forthcoming.

rootEvents 

- (NSArray*) rootEvents;
Description forthcoming.



Instance Variables for EOEventCenter Class

_eventCounter

@protected int _eventCounter;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_events

@protected NSHashTable* _events;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_lastEvent

@protected EOEvent* _lastEvent;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_rootEvent

@protected EOEvent* _rootEvent;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.




Software documentation for the NSObject(EOEventRecordingHandler) informal protocol

NSObject(EOEventRecordingHandler)

Declared in:
EOControl/EOEventCenter.h
Conforms to:
EOEventRecordingHandler
Description forthcoming.
Method summary

setLoggingEnabled: forEventClass: 

- (void) setLoggingEnabled: (BOOL)flag forEventClass: (Class)eventClass;
Description forthcoming.

Software documentation for the EOEventRecordingHandler protocol

EOEventRecordingHandler

Declared in:
EOControl/EOEventCenter.h
Description forthcoming.
Method summary

setLoggingEnabled: forEventClass: 

- (void) setLoggingEnabled: (BOOL)flag forEventClass: (Class)eventClass;
Description forthcoming.

EOEventCenter variables

EOEventLoggingEnabled

NSString* EOEventLoggingEnabled;
Description forthcoming.

EOEventLoggingLimit

NSString* EOEventLoggingLimit;
Description forthcoming.

EOEventLoggingOverflowDisplay

NSString* EOEventLoggingOverflowDisplay;
Description forthcoming.

EOEventCenter functions

EOCancelEvent

void EOCancelEvent(EOEvent* event);
Description forthcoming.

EOMarkAtomicEvent

void EOMarkAtomicEvent(EOEvent* event, id info);
Description forthcoming.

EOMarkEndOfEvent

void EOMarkEndOfEvent(EOEvent* event);
Description forthcoming.

EOMarkStartOfEvent

void EOMarkStartOfEvent(EOEvent* event, id info);
Description forthcoming.

EONewEventOfClass

id EONewEventOfClass(Class eventClass, NSString* type);
Description forthcoming.


Up