-
Notifications
You must be signed in to change notification settings - Fork 6
getAlarms
Mark Taylor edited this page Apr 1, 2014
·
3 revisions
getAlarms(successCallback, failureCallback)
Allows you to retrieve all alarms
- successCallback - function - The callback which will be called if the method is successful. The callback is passed the output (see below).
- failureCallback - function - The callback which will be called if the method encounters an error. The callback is passed the output (see below).
On success, the provided JSONArray of JSONObjects containing:
- id - integer - ID of the alarm
- when - String - the fully qualified classname of the Android Activity to be started on the alarm.
- when - Date object - JavaScript Date object of when the alarm should be triggered. While this is stores internally as UTC, it will automatically be converted to local timezone.
- showOption - String - Show Option controls how the alarm will display. See [ShowOption] (ShowOption) for possible values.
- extras - JSON Object - User defined values that will be passed to the Activity that is started as a result of the Alarm.
On failure, the provided JSONObject will contain:
- ErrorMessage - string - A textual description on why the function failed.
- [getAlarm] (getAlarm)