Name
events, eventstore.events, kPMRPCEventStoreEvents, kPMObserveEventStoreEvents — Available events that can be triggered or performed.
Synopsis
array of s eventstore.events( |
); |
Description
Available events that can be triggered or performed.
events contains a list of scheduled events. The list has no specific order, and the order may change with each request.
When dealing with events, refer to specific events using the event's unique ID.
Security
events can be requested by any authenticated client.
Unauthenticated clients are authorized using the uk.co.dssw.powermanager.eventstore.events right. By default, any local process can request events.
Examples
Example 46. C: eventstore.events
CFMutableDictionaryRef myRequest = PMRequestCreate(kCFAllocatorDefault,kPMRPCEventStoreEvents);
Example 47. Objective-C: eventstore.events
DSSWPMRequest* myRequest = [DSSWPMRequest requestWithRequest:kPMRPCEventStoreEvents];
Example 48. AppleScript: eventstore.events
tell application "Power Manager Scripting"
set myResult to events of Event Store
end tell