File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed
docs/pages/kotlinx-rpc/topics Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 222
222
</code-block >
223
223
</compare >
224
224
</li >
225
+ <li >
226
+ <p >
227
+ <code >RpcCall</code > changed parameter name and type for function's data:
228
+ </p >
229
+ <compare type =" top-bottom" >
230
+ <code-block lang =" Kotlin" >
231
+ class RpcCall(
232
+ val descriptor: RpcServiceDescriptor< *> ,
233
+ val callableName: String,
234
+ val data: Any?,
235
+ val serviceId: Long,
236
+ )
237
+ </code-block >
238
+ <code-block lang =" Kotlin" >
239
+ class RpcCall(
240
+ val descriptor: RpcServiceDescriptor< *> ,
241
+ val callableName: String,
242
+ val parameters: Array< Any?> ,
243
+ val serviceId: Long,
244
+ )
245
+ </code-block >
246
+ </compare >
247
+ </li >
225
248
<li >
226
249
<p >
227
250
For Ktor, <code >HttpClient.rpc</code > extension function is now non-suspendable.
You can’t perform that action at this time.
0 commit comments