summaryrefslogtreecommitdiff
path: root/framework/java/android/bluetooth/BluetoothGattServerCallback.java
diff options
context:
space:
mode:
authorPrerepa Viswanadham <dham@google.com>2014-09-11 13:39:16 -0700
committerPrerepa Viswanadham <dham@google.com>2014-09-11 22:29:27 +0000
commitd50b5615c1364b6aa57eec33318533063a3603d7 (patch)
tree7a66901c9e28e3f47c47c8e9b3ee0230a70cc4ec /framework/java/android/bluetooth/BluetoothGattServerCallback.java
parent71a86a646980a3726981757e174b86bb7d3a65d1 (diff)
Remove onConnectionCongested callback
Bug:17289507 Change-Id: I49fd99d320084c618dcec756b832fb3b6a6aec51
Diffstat (limited to 'framework/java/android/bluetooth/BluetoothGattServerCallback.java')
-rw-r--r--framework/java/android/bluetooth/BluetoothGattServerCallback.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/framework/java/android/bluetooth/BluetoothGattServerCallback.java b/framework/java/android/bluetooth/BluetoothGattServerCallback.java
index b0ddc26ef3..1dd06f2ce1 100644
--- a/framework/java/android/bluetooth/BluetoothGattServerCallback.java
+++ b/framework/java/android/bluetooth/BluetoothGattServerCallback.java
@@ -145,18 +145,4 @@ public abstract class BluetoothGattServerCallback {
*/
public void onNotificationSent(BluetoothDevice device, int status) {
}
-
- /**
- * Callback indicating that a remote device connection congestestion status has changed.
- *
- * An application should refrain from sending additional data (notifications, indications
- * etc.) to a remote device when a callback is received with the congested flag set
- * to true. Once the congestion status is cleared up, the application will receive an
- * additional callback with the congested flag set to false.
- *
- * @param device The remote device that triggered the congestion state change
- * @param congested true, if the connection is currently congested
- */
- public void onConnectionCongested(BluetoothDevice device, boolean congested) {
- }
}