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

com.pubnub.internal.managers.DuplicationManager.kt Maven / Gradle / Ivy

package com.pubnub.internal.managers

import com.pubnub.api.v2.PNConfiguration
import com.pubnub.internal.models.server.SubscribeMessage

internal class DuplicationManager(private val config: PNConfiguration) {
    private val hashHistory: ArrayList = ArrayList()

    private fun getKey(message: SubscribeMessage) =
        with(message) {
            "${publishMetaData?.publishTimetoken}-${payload.hashCode()}"
        }

    @Synchronized
    fun isDuplicate(message: SubscribeMessage) = hashHistory.contains(getKey(message))

    @Synchronized
    fun addEntry(message: SubscribeMessage) {
        if (hashHistory.size >= config.maximumMessagesCacheSize) {
            hashHistory.removeAt(0)
        }
        hashHistory.add(getKey(message))
    }

    @Synchronized
    fun clearHistory() = hashHistory.clear()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy