All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.youthlin.rpc.core.Invocation Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package com.youthlin.rpc.core;

import java.io.Serializable;
import java.util.Map;

/**
 * 一次调用过程的信息
 * 创建: youthlin.chen
 * 时间: 2017-11-26 16:41
 */
public interface Invocation extends Serializable {
    String uid();

    Map ext();

    //请求-----------------------------

    Class invokeInterface();

    Class returnType();

    String methodName();

    Class[] argsType();

    Object[] args();

    //响应-----------------------------

    Object getValue();

    Throwable getException();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy