Uses of Interface
com.hazelcast.vector.VectorDocument
Packages that use VectorDocument
Package
Description
This package contains interfaces and classes of the split-brain merging SPI.
Vector capability
-
Uses of VectorDocument in com.hazelcast.spi.merge
Classes in com.hazelcast.spi.merge with type parameters of type VectorDocumentModifier and TypeInterfaceDescriptionstatic interfaceSplitBrainMergeTypes.VectorCollectionMergeTypes<K,V extends VectorDocument<?>> Merge type ofVectorCollection. -
Uses of VectorDocument in com.hazelcast.vector
Methods in com.hazelcast.vector that return VectorDocumentModifier and TypeMethodDescriptionstatic <T> VectorDocument<T>VectorDocument.of(T value, VectorValues vv) Methods in com.hazelcast.vector that return types with arguments of type VectorDocumentModifier and TypeMethodDescriptionAsynchronously gets theVectorDocumentassociated with the given key ornullif no such association exists.VectorCollection.putAsync(K key, VectorDocument<V> value) Asynchronously associates the given key with thevalueVectorDocument, returning theVectorDocumentpreviously associated with thekeyif such an association existed.VectorCollection.putIfAbsentAsync(K key, VectorDocument<V> value) If the givenkeyis not already associated with aVectorDocument, associates it with the givenvalueand returnsnull, else returns the current value.VectorCollection.removeAsync(K key) Removes asynchronously the association of givenkeyto a document, if such an association existed, returning theVectorDocumentpreviously associated with thekeyif such an association existed.Methods in com.hazelcast.vector with parameters of type VectorDocumentModifier and TypeMethodDescriptionVectorCollection.putAsync(K key, VectorDocument<V> value) Asynchronously associates the given key with thevalueVectorDocument, returning theVectorDocumentpreviously associated with thekeyif such an association existed.VectorCollection.putIfAbsentAsync(K key, VectorDocument<V> value) If the givenkeyis not already associated with aVectorDocument, associates it with the givenvalueand returnsnull, else returns the current value.VectorCollection.setAsync(K key, VectorDocument<V> value) Asynchronously associates the given key with thevalueVectorDocument.Method parameters in com.hazelcast.vector with type arguments of type VectorDocumentModifier and TypeMethodDescriptionVectorCollection.putAllAsync(Map<? extends K, VectorDocument<V>> documents) Inserts asynchronously the given map of key-document pairs.