Skip to content

Instantly share code, notes, and snippets.

@mengdd
mengdd / BatchRequestFakeDemo.kt
Last active May 16, 2025 07:54
Batch size issue demo
data class PendingRequest(
val request: String,
) {
val deferred = CompletableDeferred<String>()
}
class BatchHttpInterceptor constructor(
private val batchIntervalMillis: Long = 10,
private val maxBatchSize: Int = 10,
) {