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

com.ikasoa.rpc.BaseGetService Maven / Gradle / Ivy

There is a newer version: 0.3.3-BETA3
Show newest version
package com.ikasoa.rpc;

/**
 * 基础服务接口
 * 
 * @author Larry
 * @version 0.1
 */
@FunctionalInterface
public interface BaseGetService {

	/**
	 * 获取默认的服务对象
	 * 
	 * @param arg
	 *            参数对象
	 * @return R 返回对象
	 * @exception Throwable
	 *                抛出
	 */
	R get(T arg) throws Throwable;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy