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

org.tarantool.TarantoolGenericConnection16 Maven / Gradle / Ivy

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