org.tarantool.TarantoolRequestArgument Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connector Show documentation
Show all versions of connector Show documentation
Tarantool client for java
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