This content has been marked as final.
Show 3 replies
-
1. Re: Certainly a dumb question but...
theoden Nov 2, 2010 5:06 AM (in response to theoden)No?! nobody can confirm or infirm how jbossProdiler computes running times?
Nicolas
-
2. Re: Certainly a dumb question but...
kabirkhan Nov 2, 2010 6:01 AM (in response to theoden)I have no idea, but why don't you simply measure something like this which would give you the answer:
public class Test {
public static void main(String[] args){
a();
}
static a() throws Exception {
Thread.sleep(1000);
b();
}
static b() throws Exception {
Thread.sleep(3000);
}
}
-
3. Re: Certainly a dumb question but...
theoden Nov 11, 2010 1:18 PM (in response to theoden)Well i fnally found some time to check it out and the answer is that the profiler's output display specific time for each methods (cas b of my cases list in first post).
Thank's a lot for pointing me on something i haven't though of (cf. Kabir's post)
Nicolas