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

org.tarantool.TarantoolAsyncConnection16 Maven / Gradle / Ivy

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