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