Eliminate atomix.utils.memory
[controller.git] / third-party / atomix / utils / src / main / java / io / atomix / utils / serializer / KryoInputPool.java
1 /*
2  * Copyright 2014-present Open Networking Foundation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package io.atomix.utils.serializer;
17
18 import com.esotericsoftware.kryo.io.Input;
19
20 class KryoInputPool extends KryoIOPool<Input> {
21
22   static final int MAX_POOLED_BUFFER_SIZE = 512 * 1024;
23
24   @Override
25   protected Input create(int bufferSize) {
26     return new Input(bufferSize);
27   }
28
29   @Override
30   protected boolean recycle(Input input) {
31     if (input.getBuffer().length < MAX_POOLED_BUFFER_SIZE) {
32       input.setInputStream(null);
33       return true;
34     }
35     return false; // discard
36   }
37 }