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

net.bjoernpetersen.musicbot.spi.loader.ResourceCache.kt Maven / Gradle / Ivy

There is a newer version: 0.25.0
Show newest version
package net.bjoernpetersen.musicbot.spi.loader

import net.bjoernpetersen.musicbot.api.player.Song

/**
 * Manages resources and actively frees unused resources.
 */
interface ResourceCache {

    /**
     * Looks up the resource from the cache, otherwise invokes [SongLoader.load].
     *
     * @return a resource
     */
    suspend fun get(song: Song): Resource

    /**
     * Frees all resources and renders this instance unusable.
     */
    suspend fun close()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy