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

eventstore.j.EsConnectionFactory Maven / Gradle / Ivy

The newest version!
package eventstore.j;

import akka.actor.ActorSystem;
import eventstore.Settings;

public class EsConnectionFactory {
    public static EsConnection create(ActorSystem system, Settings settings) {
        return EsConnectionImpl.apply(system, settings);
    }

    public static EsConnection create(ActorSystem system) {
        return create(system, Settings.getInstance());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy