All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amplitude.id.IdentityStorage.kt Maven / Gradle / Ivy

The newest version!
package com.amplitude.id

interface IdentityStorage {

    fun load(): Identity

    fun saveUserId(userId: String?)

    fun saveDeviceId(deviceId: String?)

    fun delete()
}

interface IdentityStorageProvider {
    fun getIdentityStorage(configuration: IdentityConfiguration): IdentityStorage
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy