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

org.tarantool.TarantoolRequestArgument Maven / Gradle / Ivy

The newest version!
package org.tarantool;

/**
 * Holds a request argument value.
 */
public interface TarantoolRequestArgument {

    /**
     * Flag indicating that held value can be
     * represented as bytes supported by iproto.
     *
     * @return {@literal true} if value is {@code iproto} serializable
     */
    boolean isSerializable();

    /**
     * Gets a held value.
     *
     * @return wrapped value
     */
    Object getValue();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy