Interface HasMethodCallListeners


  • public interface HasMethodCallListeners
    • Method Detail

      • 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.