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

com.wavesenterprise.sdk.atomic.manager.ContractInfoCacheContextManagerHook.kt Maven / Gradle / Ivy

The newest version!
package com.wavesenterprise.sdk.atomic.manager

class ContractInfoCacheContextManagerHook(
    private val contractInfoCacheManager: ContractInfoCacheManager,
) : AtomicAwareContextManagerHook {

    override fun begin() {
        contractInfoCacheManager.init()
    }

    override fun clear() {
        contractInfoCacheManager.clear()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy