File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
core/src/commonMain/kotlin/kotlinx/rpc Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2023-2024 JetBrains s.r.o and contributors. Use of this source code is governed by the Apache 2.0 license.
2
+ * Copyright 2023-2025 JetBrains s.r.o and contributors. Use of this source code is governed by the Apache 2.0 license.
3
3
*/
4
4
5
5
package kotlinx.rpc
6
6
7
7
import kotlinx.rpc.descriptor.RpcServiceDescriptor
8
8
9
+ @Deprecated(" Use RpcCall instead" , ReplaceWith (" RpcCall" ), level = DeprecationLevel .ERROR )
10
+ public typealias RPCCall = RpcCall
11
+
9
12
/* *
10
13
* Represents a method or field call of an RPC service.
11
14
*
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2023-2024 JetBrains s.r.o and contributors. Use of this source code is governed by the Apache 2.0 license.
2
+ * Copyright 2023-2025 JetBrains s.r.o and contributors. Use of this source code is governed by the Apache 2.0 license.
3
3
*/
4
4
5
5
package kotlinx.rpc
@@ -8,6 +8,9 @@ import kotlinx.coroutines.CoroutineScope
8
8
import kotlinx.coroutines.Deferred
9
9
import kotlin.coroutines.CoroutineContext
10
10
11
+ @Deprecated(" Use RpcClient instead" , ReplaceWith (" RpcClient" ), level = DeprecationLevel .ERROR )
12
+ public typealias RPCClient = RpcClient
13
+
11
14
/* *
12
15
* [RpcClient] represents an abstraction of an RPC client, that can handle requests from several RPC services,
13
16
* transform them, send to the server and handle responses and errors.
You can’t perform that action at this time.
0 commit comments