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

io.github.icodegarden.nutrient.lang.registry.MysqlJdbcRegistry Maven / Gradle / Ivy

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

import javax.sql.DataSource;

import io.github.icodegarden.nutrient.lang.concurrent.lock.DistributedLock;
import io.github.icodegarden.nutrient.lang.concurrent.lock.MysqlJdbcLock;

/**
 * 
 * @author Fangfang.Xu
 *
 */
public class MysqlJdbcRegistry extends DatabaseRegistry implements JdbcRegistry {

	private final DataSource dataSource;

	public MysqlJdbcRegistry(DataSource dataSource, RegistryListener listener) {
		super(new MysqlJdbcRegistryRepository(dataSource), listener);
		this.dataSource = dataSource;
	}

	@Override
	protected DistributedLock getRegisterLock(String name, Long expireSeconds) {
		return new MysqlJdbcLock(dataSource, name, expireSeconds);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy