org.tarantool.protocol.TarantoolGreeting 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
The newest version!
package org.tarantool.protocol;
public class TarantoolGreeting {
private final String serverVersion;
public TarantoolGreeting(String serverVersion) {
this.serverVersion = serverVersion;
}
public String getServerVersion() {
return serverVersion;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy