接口 GenericService
-
public interface GenericServiceGeneric service interface
-
-
方法详细资料
-
$invoke
Object $invoke(String method, String[] parameterTypes, Object[] args) throws GenericException
Generic invocation- 参数:
method- Method name, e.g. findPerson. If there are overridden methods, parameter info is required, e.g. findPerson(java.lang.String)parameterTypes- Parameter typesargs- Arguments- 返回:
- invocation return value
- 抛出:
GenericException- potential exception thrown from the invocation
-
$invokeAsync
default CompletableFuture<Object> $invokeAsync(String method, String[] parameterTypes, Object[] args) throws GenericException
- 抛出:
GenericException
-
-