Module jakarta.cdi

Interface Invoker<T,R>

Type Parameters:
T - type of the target bean
R - return type of the target method

public interface Invoker<T,R>
An invoker allows indirect invocation of its target method on an instance of its target bean.

CDI-based frameworks are expected to use invokers when they need to invoke application methods. Applications are not supposed to use invokers, as they can invoke their own methods directly.

For example, assume the following managed bean exists:

 @Dependent
 public class MyService {
     public String hello(String name) {
         return "Hello " + name + "!";
     }
 }
 
Further, assume that invoker is an invoker for the hello() method of the MyService bean and myService is a contextual reference for the bean. Then, to invoke the hello() method indirectly, a framework would call
 invoker.invoke(myService, new Object[] { "world" })
 
The return value would be "Hello world!".
Since:
4.1
See Also: