spring-framework / org.aopalliance.intercept / Invocation

Invocation

interface Invocation : Joinpoint

This interface represents an invocation in the program.

An invocation is a joinpoint and can be intercepted by an interceptor.

Author
Rod Johnson

Functions

getArguments

abstract fun getArguments(): Array<Any>

Get the arguments as an array object. It is possible to change element values within this array to change the arguments.

Inheritors

MethodInvocation

interface MethodInvocation : Invocation

Description of an invocation to a method, given to an interceptor upon method-call.

A method invocation is a joinpoint and can be intercepted by a method interceptor.