Вопрос

In jprofiler's CPU Views tab, the call graph typically displays the number of invocations of each method (ex, 214 inv.). However, on some of my methods, it shows "evt." instead (ex, 460 evt.). What does evt stand for, and how does it differ from number of invocations?

Это было полезно?

Решение

This depends on the thread status selection. For "All states" and "Runnable" JProfiler shows invocations, hence "inv.". For "Waiting", "Blocked" and "Net IO", it shows the cumulated number of events ("evt.") that are associated with the selected thread status. This is not necessarily the same as the number of times the methods in the call tree have been invoked.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top