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

cloud.agileframework.spring.sync.RunnerWrapper Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package cloud.agileframework.spring.sync;

import org.springframework.transaction.annotation.Transactional;

/**
 * @author 佟盟
 * 日期 2021-01-07 10:47
 * 描述 TODO
 * @version 1.0
 * @since 1.0
 */
public class RunnerWrapper {
    @Transactional(rollbackFor = Exception.class)
    public void run(Runner runner) {
        runner.run();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy