Package | Description |
---|---|
io.picodata.driver.api.conditions |
Tuple filtering conditions used in select operations
|
io.picodata.driver.api.metadata |
Contains interfaces for Tarantool space metadata operations
|
io.picodata.driver.api.space |
Contains interfaces for Tarantool space operations
|
io.picodata.driver.api.tuple |
Contains tuple representation classes and helpers
|
io.picodata.driver.core |
Driver core classes
|
io.picodata.driver.core.conditions |
Tuple filtering conditions used in select operations
|
io.picodata.driver.core.metadata |
Contains implementations for Tarantool space metadata operations
|
io.picodata.driver.core.proxy |
Contains classes and interfaces essential for proxy client
|
io.picodata.driver.core.space |
Contains implementations for Tarantool space operations
|
io.picodata.driver.core.tuple |
Contains implementations of tuple representation classes and helpers
|
io.picodata.driver.exceptions |
Exception classes for internal client errors to be translated to user
|
io.picodata.driver.mappers |
Contains converters and mappers that map Java object and MessagePack
|
io.picodata.driver.mappers.converters.value |
Contains converters that map MessagePack to Java object
|
io.picodata.driver.mappers.factories |
Contains factories for mappers and mappers stacks
|
Modifier and Type | Method and Description |
---|---|
Optional<TarantoolSpaceMetadata> |
TarantoolMetadataOperations.getSpaceById(int spaceId)
Get metadata for the space specified by id
|
Optional<TarantoolSpaceMetadata> |
TarantoolMetadataOperations.getSpaceByName(String spaceName)
Get metadata for the space specified by name
|
Map<String,TarantoolSpaceMetadata> |
TarantoolMetadataContainer.getSpaceMetadataByName()
Get space metadata mapped to space name
|
Modifier and Type | Method and Description |
---|---|
TarantoolSpaceMetadata |
TarantoolSpaceOperations.getMetadata()
Get metadata associated with this space
|
Constructor and Description |
---|
DefaultTarantoolTupleFactory(MessagePackMapper mapper,
TarantoolSpaceMetadata metadata)
Constructor with a space metadata.
|
Constructor and Description |
---|
TarantoolTupleResultImpl(org.msgpack.value.ArrayValue rawTuples,
TarantoolSpaceMetadata metadata,
ArrayValueToTarantoolTupleConverter tupleConverter) |
Modifier and Type | Method and Description |
---|---|
TarantoolIndexMetadata |
NamedIndexImpl.metadata(TarantoolMetadataOperations metadataOperations,
TarantoolSpaceMetadata spaceMetadata) |
TarantoolIndexMetadata |
IdIndexImpl.metadata(TarantoolMetadataOperations metadataOperations,
TarantoolSpaceMetadata spaceMetadata) |
TarantoolFieldMetadata |
PositionFieldImpl.metadata(TarantoolMetadataOperations metadataOperations,
TarantoolSpaceMetadata spaceMetadata) |
TarantoolFieldMetadata |
NamedFieldImpl.metadata(TarantoolMetadataOperations metadataOperations,
TarantoolSpaceMetadata spaceMetadata) |
List<?> |
BaseCondition.toList(TarantoolMetadataOperations metadataOperations,
TarantoolSpaceMetadata spaceMetadata) |
Modifier and Type | Class and Description |
---|---|
class |
TarantoolSpaceMetadataImpl
Represents Tarantool space metadata (space ID, space name, etc.)
|
Modifier and Type | Field and Description |
---|---|
protected Map<Integer,TarantoolSpaceMetadata> |
TarantoolMetadata.spaceMetadataById |
protected Map<String,TarantoolSpaceMetadata> |
TarantoolMetadata.spaceMetadataByName |
Modifier and Type | Method and Description |
---|---|
TarantoolSpaceMetadata |
CRUDResponseToTarantoolSpaceMetadataConverter.fromValue(org.msgpack.value.ArrayValue metadata) |
TarantoolSpaceMetadata |
VSpaceToTarantoolSpaceMetadataConverter.fromValue(org.msgpack.value.ArrayValue space) |
Modifier and Type | Method and Description |
---|---|
Optional<TarantoolSpaceMetadata> |
TarantoolMetadata.getSpaceById(int spaceId) |
Optional<TarantoolSpaceMetadata> |
TarantoolMetadata.getSpaceByName(String spaceName) |
protected Map<String,TarantoolSpaceMetadata> |
TarantoolMetadata.getSpaceMetadata() |
protected Map<Integer,TarantoolSpaceMetadata> |
TarantoolMetadata.getSpaceMetadataById() |
Map<String,TarantoolSpaceMetadata> |
ProxyTarantoolMetadataContainer.getSpaceMetadataByName() |
Map<String,TarantoolSpaceMetadata> |
SpacesTarantoolMetadataContainer.getSpaceMetadataByName() |
Modifier and Type | Method and Description |
---|---|
void |
ProxyTarantoolMetadataContainer.addSpace(TarantoolSpaceMetadata metadata) |
Constructor and Description |
---|
SpacesTarantoolMetadataContainer(TarantoolResult<TarantoolSpaceMetadata> spacesCollection,
TarantoolResult<TarantoolIndexMetadata> indexesCollection) |
Constructor and Description |
---|
Builder(TarantoolMetadataOperations operations,
TarantoolSpaceMetadata metadata) |
Modifier and Type | Method and Description |
---|---|
TarantoolSpaceMetadata |
TarantoolSpace.getMetadata() |
TarantoolSpaceMetadata |
RetryingTarantoolSpace.getMetadata() |
TarantoolSpaceMetadata |
ProxyTarantoolSpace.getMetadata() |
Constructor and Description |
---|
ProxyTarantoolSpace(TarantoolClientConfig config,
TarantoolCallOperations client,
ProxyOperationsMappingConfig operationsMapping,
TarantoolMetadataOperations metadata,
TarantoolSpaceMetadata spaceMetadata) |
ProxyTarantoolTupleSpace(TarantoolClientConfig config,
TarantoolCallOperations client,
ProxyOperationsMappingConfig mappingConfig,
TarantoolSpaceMetadata spaceMetadata,
TarantoolMetadataOperations metadataOperations)
Basic constructor
|
TarantoolSpace(TarantoolClientConfig config,
TarantoolConnectionManager connectionManager,
TarantoolMetadataOperations metadataOperations,
TarantoolSpaceMetadata spaceMetadata) |
TarantoolTupleSpace(TarantoolCallOperations client,
TarantoolClientConfig config,
TarantoolConnectionManager connectionManager,
TarantoolMetadataOperations metadataOperations,
TarantoolSpaceMetadata spaceMetadata)
Basic constructor
|
Constructor and Description |
---|
TarantoolTupleImpl(org.msgpack.value.ArrayValue value,
MessagePackMapper mapper,
TarantoolSpaceMetadata spaceMetadata)
Basic constructor.
|
TarantoolTupleImpl(Collection<?> values,
MessagePackMapper mapper,
TarantoolSpaceMetadata metadata)
Construct an instance of
TarantoolTuple from a list of objects. |
TarantoolTupleImpl(MessagePackMapper mapper,
TarantoolSpaceMetadata metadata)
Constructor for empty tuple with metadata
|
Constructor and Description |
---|
TarantoolFieldNotFoundException(int position,
TarantoolSpaceMetadata spaceMetadata) |
TarantoolFieldNotFoundException(String name,
TarantoolSpaceMetadata spaceMetadata) |
Modifier and Type | Method and Description |
---|---|
TarantoolTuple |
ArrayValueToTarantoolTupleConverter.fromValue(org.msgpack.value.ArrayValue value,
TarantoolSpaceMetadata responseMetadata) |
Constructor and Description |
---|
ArrayValueToTarantoolTupleConverter(MessagePackMapper mapper,
TarantoolSpaceMetadata spaceMetadata) |
Copyright © 2025 Picodata. All rights reserved.