blob: 75de3d43d378d1c4c148ddc37dd632f4f2459d93 [file] [log] [blame]
Ahmed ElArabawyeeb53382019-10-10 20:18:31 -07001/*
2 * Copyright 2019 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
17package android.hardware.wifi@1.4;
18
19import @1.0::IWifiRttControllerEventCallback;
20import @1.0::CommandId;
21
22/**
23 * RTT Response and Event Callbacks.
24 */
25interface IWifiRttControllerEventCallback extends @1.0::IWifiRttControllerEventCallback {
26 /*
27 * Invoked when an RTT result is available.
28 *
29 * @param cmdId command Id corresponding to the original request.
30 * @param results Vector of |RttResult| instances.
31 */
32 oneway onResults_1_4(CommandId cmdId, vec<RttResult> results);
33};