Interface EndpointInvoker
-
public interface EndpointInvokerBase interface implemented by the synthetic beans that represent rest endpoints. See org.jboss.resteasy.reactive.server.runtime.kotlin.CoroutineEndpointInvoker
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Objectinvoke(Object instance, Object[] parameters)Delegates control over the bean that defines the endpoint
-
-
-
Method Detail
-
invoke
Object invoke(Object instance, Object[] parameters) throws Exception
Delegates control over the bean that defines the endpoint- Parameters:
instance- the bean instanceparameters- the method arguments- Returns:
- the result of the method call
- Throws:
Exception- the exception thrown in the bean call
-
-