Interface GridProxyListener

    • Method Detail

      • beforeCall

        void beforeCall​(Class<?> cls,
                        String mtdName,
                        Object[] args)
        Method is called right before the traced method.
        Parameters:
        cls - Callee class.
        mtdName - Callee method name.
        args - Callee method parameters.
      • afterCall

        void afterCall​(Class<?> cls,
                       String mtdName,
                       Object[] args,
                       Object res,
                       Throwable e)
        Method is called right after the traced method.
        Parameters:
        cls - Callee class.
        mtdName - Callee method name.
        args - Callee method parameters.
        res - Call result. Might be null if apply returned null or if exception happened.
        e - Exception thrown by given method apply, if any. Can be null.