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

net.dongliu.prettypb.runtime.include.RpcCallback Maven / Gradle / Ivy

The newest version!
package net.dongliu.prettypb.runtime.include;

/**
 * interface for async rpc callback
 *
 * @author Dong Liu
 */
public interface RpcCallback {

    /**
     * called when rpc finished
     *
     * @param value the result
     */
    void onFinished(T value);

    /**
     * when rpc error occurred
     */
    void onError(Exception e);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy