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

org.tarantool.TarantoolClientOps Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy