Package io.tarantool.driver.api
Interface CallResult<T>
-
- Type Parameters:
T- target result type
- All Known Subinterfaces:
DDLMetadataContainerResult,MultiValueCallResult<T,R>,SingleValueCallResult<T>,TarantoolIndexMetadataResult,TarantoolSpaceMetadataResult,TarantoolTupleMultiResult,TarantoolTupleSingleResult,TarantoolVoidResult
- All Known Implementing Classes:
MultiValueCallResultImpl,SingleValueCallResultImpl,TarantoolVoidResultImpl
public interface CallResult<T>Basic interface for Tarantool call operation result -- an array of elements corresponding to the Lua multi-return result, usually two values -- an result and a error.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tvalue()Get multi-return result as a single value
-
-
-
Method Detail
-
value
T value()
Get multi-return result as a single value- Returns:
- call result
-
-