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

io.micronaut.configuration.jasync.JasyncMySQLClientFactory Maven / Gradle / Ivy

There is a newer version: 6.0.2
Show newest version
/*
 * Copyright 2017-2020 original authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package io.micronaut.configuration.jasync;

import com.github.jasync.sql.db.Connection;
import com.github.jasync.sql.db.mysql.MySQLConnection;
import com.github.jasync.sql.db.mysql.MySQLConnectionBuilder;
import com.github.jasync.sql.db.pool.ConnectionPool;
import io.micronaut.context.annotation.Factory;
import io.micronaut.context.annotation.Requires;
import jakarta.inject.Singleton;

import jakarta.annotation.PreDestroy;

/**
 * The Factory for creating Reactive Postgres client.
 */
@Factory
@Requires(classes = MySQLConnectionBuilder.class)
public class JasyncMySQLClientFactory implements AutoCloseable {

    private final JasyncPoolConfiguration jasyncPoolConfiguration;
    private ConnectionPool connection;

    /**
     * Create the factory with given Pool configuration.
     *
     * @param jasyncPoolConfiguration The Reactive Postgres configurations
     */
    public JasyncMySQLClientFactory(JasyncPoolConfiguration jasyncPoolConfiguration) {
        this.jasyncPoolConfiguration = jasyncPoolConfiguration;
    }

    /**
     * Create a connection pool to the database configured with the {@link JasyncPoolConfiguration}.
     * @return client A pool of connections.
     */
    @Singleton
    public Connection client() {
        if (this.connection == null || !this.connection.isConnected()) {

            this.connection = MySQLConnectionBuilder.createConnectionPool(this.jasyncPoolConfiguration.jasyncOptions);
        }
        return this.connection;
    }

    @Override
    @PreDestroy
    public void close() {
        if (this.connection != null && this.connection.isConnected()) {
            this.connection.disconnect();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy