1 /* 2 * Copyright (C) 2018 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package android.app.prediction; 18 19 import android.app.prediction.AppTarget; 20 import android.app.prediction.AppTargetEvent; 21 import android.app.prediction.AppPredictionContext; 22 import android.app.prediction.AppPredictionSessionId; 23 import android.app.prediction.IPredictionCallback; 24 import android.content.pm.ParceledListSlice; 25 26 /** 27 * @hide 28 */ 29 interface IPredictionManager { 30 createPredictionSession(in AppPredictionContext context, in AppPredictionSessionId sessionId, in IBinder token)31 void createPredictionSession(in AppPredictionContext context, 32 in AppPredictionSessionId sessionId, in IBinder token); 33 notifyAppTargetEvent(in AppPredictionSessionId sessionId, in AppTargetEvent event)34 void notifyAppTargetEvent(in AppPredictionSessionId sessionId, in AppTargetEvent event); 35 notifyLaunchLocationShown(in AppPredictionSessionId sessionId, in String launchLocation, in ParceledListSlice targetIds)36 void notifyLaunchLocationShown(in AppPredictionSessionId sessionId, in String launchLocation, 37 in ParceledListSlice targetIds); 38 sortAppTargets(in AppPredictionSessionId sessionId, in ParceledListSlice targets, in IPredictionCallback callback)39 void sortAppTargets(in AppPredictionSessionId sessionId, in ParceledListSlice targets, 40 in IPredictionCallback callback); 41 registerPredictionUpdates(in AppPredictionSessionId sessionId, in IPredictionCallback callback)42 void registerPredictionUpdates(in AppPredictionSessionId sessionId, 43 in IPredictionCallback callback); 44 unregisterPredictionUpdates(in AppPredictionSessionId sessionId, in IPredictionCallback callback)45 void unregisterPredictionUpdates(in AppPredictionSessionId sessionId, 46 in IPredictionCallback callback); 47 requestPredictionUpdate(in AppPredictionSessionId sessionId)48 void requestPredictionUpdate(in AppPredictionSessionId sessionId); 49 onDestroyPredictionSession(in AppPredictionSessionId sessionId)50 void onDestroyPredictionSession(in AppPredictionSessionId sessionId); 51 } 52