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

com.wix.mysql.MysqldStarter Maven / Gradle / Ivy

There is a newer version: 4.6.2
Show newest version
package com.wix.mysql;

import com.wix.mysql.config.MysqldConfig;
import de.flapdoodle.embed.process.config.IRuntimeConfig;
import de.flapdoodle.embed.process.distribution.Distribution;
import de.flapdoodle.embed.process.extract.IExtractedFileSet;
import de.flapdoodle.embed.process.runtime.Starter;

class MysqldStarter extends Starter {

    public MysqldStarter(final IRuntimeConfig config) {
        super(config);
    }

    @Override
    protected MysqldExecutable newExecutable(
            final MysqldConfig config,
            final Distribution distribution,
            final IRuntimeConfig runtime,
            final IExtractedFileSet exe) {
        return new MysqldExecutable(distribution, config, runtime, exe);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy