Name
active, scheduler.active, kPMRPCSchedulerActive, kPMObserveSchedulerActive — Active events.
Synopsis
array of s scheduler.active( |
); |
Description
Active events.
events whose criteria are being evaluated, or whose actions are being performed.
Security
active can be requested by any authenticated client.
Unauthenticated clients are authorized using the uk.co.dssw.powermanager.scheduler.active right. By default, any local process can request active.
Examples
Example 109. C: scheduler.active
CFMutableDictionaryRef myRequest = PMRequestCreate(kCFAllocatorDefault,kPMRPCSchedulerActive);
Example 110. Objective-C: scheduler.active
DSSWPMRequest* myRequest = [DSSWPMRequest requestWithRequest:kPMRPCSchedulerActive];
Example 111. AppleScript: scheduler.active
tell application "Power Manager Scripting"
set myResult to active of Scheduler
end tell