We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b8c23d commit 0d3b011Copy full SHA for 0d3b011
krpc/krpc-core/src/commonMain/kotlin/kotlinx/rpc/krpc/KrpcConfig.kt
@@ -79,12 +79,12 @@ public sealed class KrpcConfigBuilder protected constructor() {
79
/**
80
* A buffer size for a single call.
81
*
82
- * The default value is 1,
+ * The default value is 1000,
83
* meaning that only after one message is handled - the next one will be sent.
84
85
* This buffer also applies to how many messages are cached with [waitTimeout]
86
*/
87
- public var perCallBufferSize: Int = 1
+ public var perCallBufferSize: Int = 1000
88
}
89
90
@Deprecated("Use connector { } instead", level = DeprecationLevel.ERROR)
0 commit comments