Uses of Interface
io.camunda.zeebe.db.DbKey
Packages that use DbKey
Package
Description
-
Uses of DbKey in io.camunda.zeebe.db
Classes in io.camunda.zeebe.db with type parameters of type DbKeyModifier and TypeInterfaceDescriptioninterfaceColumnFamily<KeyType extends DbKey,ValueType extends DbValue> Represents an column family, where it is possible to store keys of typeColumnFamilyand corresponding values of typeColumnFamily.interfaceKeyValuePairVisitor<KeyType extends DbKey,ValueType extends DbValue> Represents an function that accepts a zeebe key value pair and produces an primitive boolean as result.Methods in io.camunda.zeebe.db with type parameters of type DbKeyModifier and TypeMethodDescription<KeyType extends DbKey,ValueType extends DbValue>
ColumnFamily<KeyType,ValueType> ZeebeDb.createColumnFamily(ColumnFamilyType columnFamily, TransactionContext context, KeyType keyInstance, ValueType valueInstance) Creates an instance of a specific column family to access and store key-value pairs in that column family.Methods in io.camunda.zeebe.db that return types with arguments of type DbKeyMethods in io.camunda.zeebe.db with parameters of type DbKeyModifier and TypeMethodDescriptionvoidColumnFamily.whileEqualPrefix(DbKey keyPrefix, KeyValuePairVisitor<KeyType, ValueType> visitor) Visits the key-value pairs, which are stored in the column family and which have the same common prefix.voidColumnFamily.whileEqualPrefix(DbKey keyPrefix, BiConsumer<KeyType, ValueType> visitor) Visits the key-value pairs, which are stored in the column family and which have the same common prefix. -
Uses of DbKey in io.camunda.zeebe.db.impl
Classes in io.camunda.zeebe.db.impl with type parameters of type DbKeyModifier and TypeClassDescriptionfinal classDbCompositeKey<FirstKeyType extends DbKey,SecondKeyType extends DbKey> final classDbCompositeKey<FirstKeyType extends DbKey,SecondKeyType extends DbKey> final recordDbForeignKey<K extends DbKey>Wraps a key from a given column family.Classes in io.camunda.zeebe.db.impl that implement DbKeyModifier and TypeClassDescriptionfinal classfinal classDbCompositeKey<FirstKeyType extends DbKey,SecondKeyType extends DbKey> final recordDbForeignKey<K extends DbKey>Wraps a key from a given column family.final classfinal classfinal classMethods in io.camunda.zeebe.db.impl that return types with arguments of type DbKeyModifier and TypeMethodDescriptionDbCompositeKey.containedForeignKeys()DbForeignKey.containedForeignKeys() -
Uses of DbKey in io.camunda.zeebe.db.impl.rocksdb.transaction
Methods in io.camunda.zeebe.db.impl.rocksdb.transaction with type parameters of type DbKeyModifier and TypeMethodDescription<KeyType extends DbKey,ValueType extends DbValue>
ColumnFamily<KeyType,ValueType> ZeebeTransactionDb.createColumnFamily(ColumnFamilyNames columnFamily, TransactionContext context, KeyType keyInstance, ValueType valueInstance) Methods in io.camunda.zeebe.db.impl.rocksdb.transaction with parameters of type DbKeyModifier and TypeMethodDescriptionvoidColumnFamilyContext.withPrefixKey(DbKey key, ObjIntConsumer<byte[]> prefixKeyConsumer) void