Examples of PipelineComponentProfiler


Examples of org.apache.cocoon.profiling.profiler.PipelineComponentProfiler

        String id = "42";
        ProfilingData profilingData = new ProfilingData();
        profilingData.setInvocationStartTime(System.nanoTime());
        profilingData.setInvocationEndTime(System.nanoTime() + 1000000000);
        profilingData.addData("foo", "bar");
        profilingData.setProfiler(new PipelineComponentProfiler().getClass().getSimpleName());
        profilingData.setTarget(new ProfilingPngSerializer());
        profilingData.setReturnValue(null);

        ProfilingDataHolder holder = (ProfilingDataHolder) applicationContext
                .getBean("org.apache.cocoon.profiling.data.ProfilingDataHolder");
View Full Code Here

Examples of org.apache.cocoon.profiling.profiler.PipelineComponentProfiler

        String id = "42";
        ProfilingData profilingData = new ProfilingData();
        profilingData.setInvocationStartTime(System.nanoTime());
        profilingData.setInvocationEndTime(System.nanoTime() + 1000000000);
        profilingData.addData("foo", "bar");
        profilingData.setProfiler(new PipelineComponentProfiler().getClass().getSimpleName());
        profilingData.setTarget(new ProfilingPngSerializer());
        profilingData.setReturnValue(null);

        ProfilingDataHolder holder = (ProfilingDataHolder) applicationContext
                .getBean("org.apache.cocoon.profiling.data.ProfilingDataHolder");
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.