com.github.liuyehcf.framework.rpc.maple.GenericService Maven / Gradle / Ivy
package com.github.liuyehcf.framework.rpc.maple;
/**
* @author hechenfeng
* @date 2019/4/3
*/
public interface GenericService {
/**
* generic invoke
*
* @param methodName method name
* @param parameterTypes type array of args
* @param args args
* @return result
*/
Object genericInvoke(String methodName, String[] parameterTypes, Object[] args);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy