Interface Interceptor.Chain<V>

Type Parameters:
V - the return value
All Known Implementing Classes:
Invocation
Enclosing interface:
Interceptor

public static interface Interceptor.Chain<V>
Represents the next in line for interception, terminating with a call to the wrapped service provider.
  • Method Summary

    Modifier and Type
    Method
    Description
    proceed(Object[] args)
    Call the next interceptor in line, or finishing with the call to the service provider.
  • Method Details

    • proceed

      V proceed(Object[] args)
      Call the next interceptor in line, or finishing with the call to the service provider.
      Parameters:
      args - the arguments pass
      Returns:
      the result of the call