Package org.jruby.runtime.profile

Examples of org.jruby.runtime.profile.ProfilePrinter


    public void printProfileData(ProfileData profileData) {
        printProfileData(profileData, config.getProfileOutput());
    }

    public void printProfileData(ProfileData profileData, ProfileOutput output) {
        ProfilePrinter profilePrinter = ProfilePrinter.newPrinter(config.getProfilingMode(), profileData);
        if (profilePrinter != null) {
            output.printProfile(profilePrinter);
        } else {
            out.println("\nno printer for profile mode: " + config.getProfilingMode() + " !");
        }
View Full Code Here

TOP

Related Classes of org.jruby.runtime.profile.ProfilePrinter

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.