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