All Known Implementing Classes:
ExperimentVisitor

public interface ICallVisitor
Classes implementing the ICallVisitor interface can be used for monitoring method calls.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Called after a method call.
    void
    Called before a method call.
  • Method Details

    • preCallVisit

      void preCallVisit(String callId)
      Called before a method call.
      Parameters:
      callId - the ID of the call
    • postCallVisit

      void postCallVisit(String callId)
      Called after a method call.
      Parameters:
      callId - the ID of the call