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

io.github.icodegarden.nutrient.lang.concurrent.lock.MysqlJdbcReentrantLock Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
package io.github.icodegarden.nutrient.lang.concurrent.lock;

import javax.sql.DataSource;

/**
 * 
 * @author Fangfang.Xu
 *
 */
public class MysqlJdbcReentrantLock extends CustomizeReentrantLock {

	public MysqlJdbcReentrantLock(DataSource dataSource, String name, Long expireSeconds) {
		super(new MysqlJdbcLock(dataSource, name, expireSeconds));
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy