Interface ResultVerifier


public interface ResultVerifier
This handler is called after a method returned.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    verify(Object returnValue, Throwable t, Method m, Object... args)
    Verify the result or exception.
  • Method Details

    • verify

      boolean verify(Object returnValue, Throwable t, Method m, Object... args)
      Verify the result or exception.
      Parameters:
      returnValue - the returned value or null
      t - the exception / error or null if the method returned normally
      m - the method or null if unknown
      args - the arguments or null if unknown
      Returns:
      true if the method should be called again