org.tarantool.TarantoolGenericConnection16 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;
public interface TarantoolGenericConnection16 extends TarantoolConnection16 {
T select(Class clz, int space, int index, Object key, int offset, int limit, int iterator);
T insert(Class clz, int space, Object tuple);
T replace(Class clz, int space, Object tuple);
T update(Class clz, int space, Object key, Object... args);
void upsert(Class clz, int space, Object key, Object def, Object... args);
T delete(Class clz, int space, Object key);
T call(Class clz, String function, Object... args);
T eval(Class clz, String expression, Object... args);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy