# memorypool **Repository Path**: mhe/memorypool ## Basic Information - **Project Name**: memorypool - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2017-12-16 - **Last Updated**: 2024-05-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # memorypool A java memory pool to support dynamic OutputStream/DataOutput, with heap, direct memory, unsafe memory, Nmap memory Examples: MemoryPool pool = MemoryPool.builder().nmap().build(); Output output = pool.malloc(); --Output inherit OutputStream and DataOutput output.write(bytes); Input input = output.toInput(); --Input inherit InputStream and DataInput input.read(bytes); output.close(); input.close();