blob: 3628c775b7985f2475214ce7fccdc3f9e531a7ea [file] [log] [blame]
Jakub Pawlowskia9d1a322017-01-10 06:15:54 -08001/*
2 * Copyright (C) 2017 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 */
16package android.bluetooth.le;
17
18/**
19 * Callback definitions for interacting with Advertiser
20 * @hide
21 */
22oneway interface IAdvertisingSetCallback {
Jakub Pawlowski6a55da92017-03-17 15:33:27 -070023 void onAdvertisingSetStarted(in int advertiserId, in int tx_power, in int status);
Jakub Pawlowski4bc4a442017-04-19 06:52:08 -070024 void onOwnAddressRead(in int advertiserId, in int addressType, in String address);
Jakub Pawlowskia9d1a322017-01-10 06:15:54 -080025 void onAdvertisingSetStopped(in int advertiserId);
26 void onAdvertisingEnabled(in int advertiserId, in boolean enable, in int status);
27 void onAdvertisingDataSet(in int advertiserId, in int status);
28 void onScanResponseDataSet(in int advertiserId, in int status);
Jakub Pawlowski6a55da92017-03-17 15:33:27 -070029 void onAdvertisingParametersUpdated(in int advertiserId, in int tx_power, in int status);
Jakub Pawlowskia9d1a322017-01-10 06:15:54 -080030 void onPeriodicAdvertisingParametersUpdated(in int advertiserId, in int status);
31 void onPeriodicAdvertisingDataSet(in int advertiserId, in int status);
Jakub Pawlowski7998be92017-03-22 15:40:21 -070032 void onPeriodicAdvertisingEnabled(in int advertiserId, in boolean enable, in int status);
Jakub Pawlowskia9d1a322017-01-10 06:15:54 -080033}