Probe class is a Java class intended to monitor execution of particular methods.
Bytecode instrumentation engine will inject calls to your probes to the methods which you specified.
You can access method parameters, method return value, the object for which the method is called, as well as intercept uncaught exceptions thrown in the method.
This provides virtually unlimited capabilities to monitor applications. Read more...