Here you can find the source of cleanMemBuff(MappedByteBuffer buffer)
public static void cleanMemBuff(MappedByteBuffer buffer)
//package com.java2s; //License from project: Apache License import java.nio.MappedByteBuffer; import sun.nio.ch.DirectBuffer; public class Main { public static void cleanMemBuff(MappedByteBuffer buffer) { ((DirectBuffer) buffer).cleaner().clean(); }//from ww w . ja v a 2 s .c o m }