Package com.foursquare.heapaudit

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

Related Classes of com.foursquare.heapaudit.HeapQuantile

Copyright © 2018 www.massapicom. 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.