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

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

The newest version!
package io.github.icodegarden.nutrient.lang.concurrent.lock;

import javax.sql.DataSource;

/**
 * 
 * @author Fangfang.Xu
 *
 */
public class MysqlJdbcLock extends DatabaseLock implements JdbcLock {

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy