1 46 package org.mr.core.util.byteable; 47 48 import java.nio.ByteBuffer ; 49 50 55 public class ByteBufferDummyPool implements ByteBufferFactory{ 56 57 58 public ByteBuffer getBuffer(int size) { 59 60 return ByteBuffer.allocate(size); 61 } 62 63 public void release(ByteBuffer buffer) { 64 65 66 } 67 68 public int getSmallBufferSize() { 69 return 0; 70 } 71 72 } 73 | Popular Tags |