Configuration

interface Configuration

Base configuration options shared between all realm configuration types.

Inheritors

Types

Link copied to clipboard
abstract class SharedBuilder<T, S : Configuration.SharedBuilder<T, S>>(schema: Set<KClass<out BaseRealmObject>> = setOf())

Base class for configuration builders that holds properties available to both RealmConfiguration and SyncConfiguration.

Properties

Link copied to clipboard

Callback that determines if the realm file should be compacted as part of opening it.

Link copied to clipboard
abstract val encryptionKey: ByteArray?

64 byte key used to encrypt and decrypt the Realm file.

Link copied to clipboard

Callback that will be triggered in order to write initial data when the Realm file is created for the first time.

Link copied to clipboard

Configuration that holds details of a bundled asset file used as initial state of the realm file. See SharedBuilder.initialRealmFile for details. null is returned if no initial realm file has been configured.

Link copied to clipboard
abstract val inMemory: Boolean

Describes whether the realm should reside in memory or on disk.

Link copied to clipboard

Maximum number of active versions.

Link copied to clipboard
abstract val name: String

Filename of the realm file.

Link copied to clipboard
abstract val path: String

Path to the realm file.

Link copied to clipboard
abstract val schema: Set<KClass<out BaseRealmObject>>

The set of classes included in the schema for the realm.

Link copied to clipboard
abstract val schemaVersion: Long

The schema version.