14 lines
259 B
Java
14 lines
259 B
Java
package com.loafle.commons.rpc.protocol;
|
|
|
|
import java.lang.reflect.Type;
|
|
|
|
import com.loafle.commons.rpc.RPCException;
|
|
|
|
/**
|
|
* RegistryCodec
|
|
*/
|
|
public interface RPCRegistryCodec {
|
|
String method();
|
|
Object[] params(Type[] paramTypes) throws RPCException;
|
|
}
|