You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/api/core.api
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -32,9 +32,14 @@ public final class kotlinx/rpc/RpcCall {
32
32
public abstract interface class kotlinx/rpc/RpcClient : kotlinx/coroutines/CoroutineScope {
33
33
public abstract fun call (Lkotlinx/rpc/RpcCall;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
34
34
public abstract fun callAsync (Lkotlinx/coroutines/CoroutineScope;Lkotlinx/rpc/RpcCall;)Lkotlinx/coroutines/Deferred;
35
+
public abstract fun callServerStreaming (Lkotlinx/rpc/RpcCall;)Lkotlinx/coroutines/flow/Flow;
35
36
public abstract fun provideStubContext (J)Lkotlin/coroutines/CoroutineContext;
36
37
}
37
38
39
+
public final class kotlinx/rpc/RpcClient$DefaultImpls {
40
+
public static fun callServerStreaming (Lkotlinx/rpc/RpcClient;Lkotlinx/rpc/RpcCall;)Lkotlinx/coroutines/flow/Flow;
41
+
}
42
+
38
43
public abstract interface annotation class kotlinx/rpc/RpcEagerField : java/lang/annotation/Annotation {
39
44
}
40
45
@@ -59,12 +64,13 @@ public abstract interface annotation class kotlinx/rpc/annotations/Rpc : java/la
59
64
}
60
65
61
66
public final class kotlinx/rpc/descriptor/RpcCallable {
62
-
public fun <init> (Ljava/lang/String;Lkotlinx/rpc/descriptor/RpcType;Lkotlinx/rpc/descriptor/RpcType;Lkotlinx/rpc/descriptor/RpcInvokator;[Lkotlinx/rpc/descriptor/RpcParameter;)V
67
+
public fun <init> (Ljava/lang/String;Lkotlinx/rpc/descriptor/RpcType;Lkotlinx/rpc/descriptor/RpcType;Lkotlinx/rpc/descriptor/RpcInvokator;[Lkotlinx/rpc/descriptor/RpcParameter;Z)V
63
68
public final fun getDataType ()Lkotlinx/rpc/descriptor/RpcType;
64
69
public final fun getInvokator ()Lkotlinx/rpc/descriptor/RpcInvokator;
65
70
public final fun getName ()Ljava/lang/String;
66
71
public final fun getParameters ()[Lkotlinx/rpc/descriptor/RpcParameter;
67
72
public final fun getReturnType ()Lkotlinx/rpc/descriptor/RpcType;
73
+
public final fun isNonSuspendFunction ()Z
68
74
}
69
75
70
76
public abstract interface class kotlinx/rpc/descriptor/RpcInvokator {
0 commit comments