pro.jk.ejoker.common.context.dev2.IEJokerSimpleContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ejoker-common Show documentation
Show all versions of ejoker-common Show documentation
EJoker is a CQRS + EventSourcing framwork
package pro.jk.ejoker.common.context.dev2;
import java.lang.reflect.Type;
public interface IEJokerSimpleContext {
/**
* 通过对象类型获取
* @param clazz
* @return
*/
public T get(Class clazz);
/**
* 通过对象类型获取,具备泛型限定的功能
* @param clazz
* @param pSign 泛型签名
* @return
*/
public T get(Class clazz, Type... types);
}