org.tarantool.TarantoolConnection16 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;
import java.util.List;
public interface TarantoolConnection16 {
List select(int space, int index, Object key, int offset, int limit, int iterator);
List insert(int space, Object tuple);
List replace(int space, Object tuple);
List update(int space, Object key, Object... tuple);
void upsert(int space, Object key, Object defTuple, Object... ops);
List delete(int space, Object key);
List call(String function, Object... args);
List eval(String expression, Object... args);
void auth(String username, String password);
T schema(T schema);
void ping();
void close();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy