blob: 7b05b4918103be8cce5535b20f48e9eb64d232c1 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/* //device/java/android/android/app/IAlarmManager.aidl
2**
3** Copyright 2006, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9** http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17package android.app;
18
Jose Lima235510e2014-08-13 12:50:01 -070019import android.app.AlarmManager;
Christopher Tate14a7bb02015-10-01 10:24:31 -070020import android.app.IAlarmListener;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080021import android.app.PendingIntent;
Christopher Tate14a7bb02015-10-01 10:24:31 -070022import android.content.Intent;
David Christieebe51fc2013-07-26 13:23:29 -070023import android.os.WorkSource;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024
25/**
26 * System private API for talking with the alarm manager service.
27 *
28 * {@hide}
29 */
30interface IAlarmManager {
Christopher Tate57ceaaa2013-07-19 16:30:43 -070031 /** windowLength == 0 means exact; windowLength < 0 means the let the OS decide */
Christopher Tate14a7bb02015-10-01 10:24:31 -070032 void set(String callingPackage, int type, long triggerAtTime, long windowLength,
33 long interval, int flags, in PendingIntent operation, in IAlarmListener listener,
34 String listenerTag, in WorkSource workSource, in AlarmManager.AlarmClockInfo alarmClock);
Greg Hackmann38bf5142014-02-19 16:39:36 -080035 boolean setTime(long millis);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036 void setTimeZone(String zone);
Christopher Tate14a7bb02015-10-01 10:24:31 -070037 void remove(in PendingIntent operation, in IAlarmListener listener);
Dianne Hackbornf70faed2015-04-21 14:11:38 -070038 long getNextWakeFromIdleTime();
Jose Lima235510e2014-08-13 12:50:01 -070039 AlarmManager.AlarmClockInfo getNextAlarmClock(int userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040}