Runtime components : Runtime Tools : Operation monitor : Code and implementation
  
Code and implementation
CallBack interface and implementation class
includes interfaces and implementation classes.
AspectJ script and BTTCore/BTTChannels weaved by AspectJ
Weaved UDTT classes will call CallBack implementation class and this class will count time.
Customers can edit AspectJ codes and extend to support other types.
 
Monitoring object
Method
Monitor
BTTServerOperation and all its subclasses
Call Execute()
before, around, after
Note You can also just monitor execute() of HTMLRequestHandler. This can avoid multiple operations repeatedly call execute().
Implementation classes of OperationStepInterface
Execution of Execute()
before, around, after
Flow DSEState DSEHTMLState DSEOperationState...
Execution of Activate()
before, around, after
Note You cannot use execute() of HTMLRequestHandler. Because the caller is execute() of Flow and the execution logic is in Activate which does not need to be in the smaller part.
Go up to
Operation monitor