Skip to content

Commit

Permalink
API dump
Browse files Browse the repository at this point in the history
  • Loading branch information
twyatt committed Nov 22, 2021
1 parent 143e0da commit b04ffee
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions core/api/core.api
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public final class com/juul/kable/AndroidPeripheral : com/juul/kable/Peripheral
public fun disconnect (Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
public final fun getMtu ()Lkotlinx/coroutines/flow/StateFlow;
public fun getServices ()Ljava/util/List;
public fun getState ()Lkotlinx/coroutines/flow/Flow;
public fun getState ()Lkotlinx/coroutines/flow/StateFlow;
public fun observe (Lcom/juul/kable/Characteristic;Lkotlin/jvm/functions/Function1;)Lkotlinx/coroutines/flow/Flow;
public fun read (Lcom/juul/kable/Characteristic;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
public fun read (Lcom/juul/kable/Descriptor;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
Expand Down Expand Up @@ -58,7 +58,7 @@ public final class com/juul/kable/CharacteristicKt {
public static final fun characteristicOf (Ljava/lang/String;Ljava/lang/String;)Lcom/juul/kable/Characteristic;
}

public final class com/juul/kable/ConnectionLostException : java/io/IOException {
public final class com/juul/kable/ConnectionLostException : com/juul/kable/NotConnectedException {
public fun <init> ()V
}

Expand Down Expand Up @@ -154,7 +154,11 @@ public final class com/juul/kable/ManufacturerData {
public final fun getData ()[B
}

public final class com/juul/kable/NotReadyException : java/io/IOException {
public class com/juul/kable/NotConnectedException : java/io/IOException {
public fun <init> ()V
}

public final class com/juul/kable/NotReadyException : com/juul/kable/NotConnectedException {
public fun <init> ()V
}

Expand All @@ -168,7 +172,7 @@ public abstract interface class com/juul/kable/Peripheral {
public abstract fun connect (Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
public abstract fun disconnect (Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
public abstract fun getServices ()Ljava/util/List;
public abstract fun getState ()Lkotlinx/coroutines/flow/Flow;
public abstract fun getState ()Lkotlinx/coroutines/flow/StateFlow;
public abstract fun observe (Lcom/juul/kable/Characteristic;Lkotlin/jvm/functions/Function1;)Lkotlinx/coroutines/flow/Flow;
public abstract fun read (Lcom/juul/kable/Characteristic;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
public abstract fun read (Lcom/juul/kable/Descriptor;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
Expand Down

0 comments on commit b04ffee

Please sign in to comment.