Examples of HeapQuantile


Examples of com.foursquare.heapaudit.HeapQuantile

    public static void main(String[] args) {

        allocateFoo();

        HeapQuantile recorder = new HeapQuantile();
        HeapRecorder.register(recorder, HeapRecorder.Threading.Local);

        allocateBar();

        HeapRecorder.unregister(recorder, HeapRecorder.Threading.Local);
        System.out.println(recorder.summarize(HeapRecorder.Threading.Local));

    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.