org.tarantool.jdbc.SQLSocketProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connector Show documentation
Show all versions of connector Show documentation
Tarantool client for java
package org.tarantool.jdbc;
import java.net.Socket;
import java.net.URI;
import java.util.Properties;
public interface SQLSocketProvider {
Socket getConnectedSocket(URI uri, Properties params);
}