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

com.logicbus.models.servant.ServiceDescriptionWatcher Maven / Gradle / Ivy

There is a newer version: 1.6.16
Show newest version
package com.logicbus.models.servant;

import com.logicbus.models.catalog.Path;


/**
 * 服务描述信息监听器
 *  
 * @author duanyy
 *
 */
public interface ServiceDescriptionWatcher {
	
	/**
	 * 当服务描述有变动的时候触发
	 * @param id id
	 * @param desc 新的描述信息
	 */
	public void changed(Path id,ServiceDescription desc);
	
	/**
	 * 服务被删除
	 * @param id 服务ID
	 */
	public void removed(Path id);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy