org.tarantool.TarantoolClientOps 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 TarantoolClientOps {
R select(T space, T index, O key, int offset, int limit, int iterator);
R select(T space, T index, O key, int offset, int limit, Iterator iterator);
R insert(T space, O tuple);
R replace(T space, O tuple);
R update(T space, O key, P... tuple);
R upsert(T space, O key, O defTuple, P... ops);
R delete(T space, O key);
R call(String function, Object... args);
R eval(String expression, Object... args);
void ping();
void close();
}