Pour mesurer le coût d’un code applicatif, il est possible de créer un Marqueur applicatif qui sera visible dans la page de "Chronomètre" et dans la page de "Consultation de l’activité".
...
To measure the cost of an application code, it is possible to create an Application Marker which will be visible in the page of the module "Response Times" and in the "Activity Observer" page.
Sample code
wsnoheto.tools.Gate myGate = wsnoheto.engine.ObjectPoolManager.getOrCreateApplicationGate("myAppGate");
myGate.enter();
try {
... my code ...
} finally {
myGate.leave();
}
Chronomètre