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

net.dubboclub.dubbogenerator.handler.InvokeHandler Maven / Gradle / Ivy

The newest version!
package net.dubboclub.dubbogenerator.handler;

/**
 * Created by bieber on 2015/7/31.
 */
public interface InvokeHandler {

    public static final String LOGGER_NAME="DUBBO_INTEGRATION";

    public void beforeInvoke(Class clientType, String methodName, Object[] args);

    public void completeInvoke(Class clientType, String methodName, Object ret, Object[] args);
    
    public void caughtException(Class clientType, String methodName, Throwable e, Object[] args);
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy