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

com.fhs.trans.ds.DataSourceSetter Maven / Gradle / Ivy

There is a newer version: 3.0.6
Show newest version
package com.fhs.trans.ds;

import java.util.Map;

/**
 * 数据源设置
 */
public interface DataSourceSetter {

    /**
     * 设置数据源
     * @param datasourceName
     */
    void setDataSource(String datasourceName);

    /**
     * 在主线程获取上下文
     * @return
     */
    Map getContext();

    /**
     * 在子线程设置上下文
     * @param context
     */
    void setContext(Map context);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy