blob: 9eba49a52988afdfd462f927113a6612327869bd [file] [log] [blame]
Roman Elizarov1f74a2d2018-06-29 19:19:45 +03001/*
2 * Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3 */
4
Sergey Mashkove86eb082017-12-04 18:45:05 +03005package kotlinx.coroutines.experimental.io.jvm.javaio
6
7import kotlinx.io.pool.*
8
9internal val ByteArrayPool = object : DefaultPool<ByteArray>(128) {
10 override fun produceInstance() = ByteArray(4096)
11}