Interface InvocationInterceptor.Invocation<T>

    • Method Detail

      • proceed

        T proceed()
           throws java.lang.Throwable
        Proceed with this invocation.
        Returns:
        the result of this invocation; potentially null.
        Throws:
        java.lang.Throwable - in case the invocation failed
      • skip

        @API(status=STABLE,
             since="5.10")
        default void skip()
        Explicitly skip this invocation.

        This allows to bypass the check that proceed() must be called at least once. The default implementation does nothing.