Interface HasMethodCallListeners


public interface HasMethodCallListeners
  • Method Summary

    Modifier and Type
    Method
    Description
    The getter is dynamically created by ByteBuddy to access method call listeners on the instrumented proxy instance.
    void
    The setter is dynamically created by ByteBuddy to store method call listeners on the instrumented proxy instance.
  • Method Details

    • setMethodCallListeners

      void setMethodCallListeners(MethodCallListener[] methodCallListeners)
      The setter is dynamically created by ByteBuddy to store method call listeners on the instrumented proxy instance.
      Parameters:
      methodCallListeners - Array of method call listeners assigned to the proxy instance.
    • getMethodCallListeners

      MethodCallListener[] getMethodCallListeners()
      The getter is dynamically created by ByteBuddy to access method call listeners on the instrumented proxy instance.
      Returns:
      Array of method call listeners assigned the proxy instance.