ObjectInRepository

data class ObjectInRepository(repositoryId: String, val key: String) : Comparable<ObjectInRepository>

A composed key used in the key-value stores to persist model data. The key is composed of a key and an optional repositoryId. The repositoryId is set when an entry is scoped to the repository.

This class is directly used with the Ignite cache (see IgniteStoreClient). Therefore, the order of fields must be consistent with the configuration of JdbcType in ignite.xml.

Constructors

Link copied to clipboard
constructor(repositoryId: String, key: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val key: String

Functions

Link copied to clipboard
open operator override fun compareTo(other: ObjectInRepository): Int
Link copied to clipboard
Link copied to clipboard