@@ -90,6 +90,7 @@ public final class com/juul/able/gatt/CoroutinesGatt : com/juul/able/gatt/Gatt {
90
90
public fun getServices ()Ljava/util/List;
91
91
public fun readCharacteristic (Landroid/bluetooth/BluetoothGattCharacteristic;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
92
92
public fun readRemoteRssi (Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
93
+ public fun requestConnectionPriority (Lcom/juul/able/gatt/Priority;)Z
93
94
public fun requestMtu (ILkotlin/coroutines/Continuation;)Ljava/lang/Object;
94
95
public fun setCharacteristicNotification (Landroid/bluetooth/BluetoothGattCharacteristic;Z)Z
95
96
public fun toString ()Ljava/lang/String;
@@ -107,6 +108,7 @@ public abstract interface class com/juul/able/gatt/Gatt : com/juul/able/gatt/Gat
107
108
public abstract interface class com/juul/able/gatt/GattConnection {
108
109
public abstract fun disconnect (Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
109
110
public abstract fun getOnConnectionStateChange ()Lkotlinx/coroutines/flow/Flow;
111
+ public abstract fun requestConnectionPriority (Lcom/juul/able/gatt/Priority;)Z
110
112
}
111
113
112
114
public abstract interface class com/juul/able/gatt/GattIo {
@@ -246,6 +248,14 @@ public final class com/juul/able/gatt/OnReadRemoteRssi : com/juul/able/gatt/HasG
246
248
public final class com/juul/able/gatt/OutOfOrderGattCallbackException : java/lang/IllegalStateException {
247
249
}
248
250
251
+ public final class com/juul/able/gatt/Priority : java/lang/Enum {
252
+ public static final field Balanced Lcom/juul/able/gatt/Priority;
253
+ public static final field High Lcom/juul/able/gatt/Priority;
254
+ public static final field Low Lcom/juul/able/gatt/Priority;
255
+ public static fun valueOf (Ljava/lang/String;)Lcom/juul/able/gatt/Priority;
256
+ public static fun values ()[Lcom/juul/able/gatt/Priority;
257
+ }
258
+
249
259
public final class com/juul/able/logger/AndroidLogger : com/juul/able/logger/Logger {
250
260
public fun <init> ()V
251
261
public fun isLoggable (I)Z
0 commit comments