All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tarantool.TarantoolAsyncGenericConnection16 Maven / Gradle / Ivy

There is a newer version: 1.9.4
Show newest version
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