Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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

Code Block
wsnoheto.tools.Gate myGate = wsnoheto.engine.ObjectPoolManager.getOrCreateApplicationGate("myAppGate");
myGate.enter();
try {
        ... my code ...
} finally {
        myGate.leave();
}

Stopwatch

...

See the "Stopwatch" functionality

Activity Observer

...

See "Activity Observer"