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

net.dongliu.prettypb.rpc.config.ServerChangedNotifier Maven / Gradle / Ivy

There is a newer version: 0.3.5
Show newest version
package net.dongliu.prettypb.rpc.config;

import net.dongliu.prettypb.rpc.protocol.ServerInfo;

/**
 * call back interface when rpc server changed
 *
 * @author Dong Liu
 */
public interface ServerChangedNotifier {

    /**
     * new server is added
     *
     * @param serverInfo
     */
    void notifyAdd(ServerInfo serverInfo);

    /**
     * remove on server
     *
     * @param serverInfo
     */
    void notifyRemove(ServerInfo serverInfo);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy