-
Notifications
You must be signed in to change notification settings - Fork 675
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ImageLoader option for creating memory cache key using toString()…
… by default.
- Loading branch information
1 parent
66e5615
commit 6540b67
Showing
4 changed files
with
66 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package coil3.key | ||
|
||
import coil3.request.Options | ||
|
||
@Suppress("UNCHECKED_CAST") | ||
internal fun <T : Any> CacheEnabledKeyer(): Keyer<T> = CacheEnabledKeyer as Keyer<T> | ||
|
||
private object CacheEnabledKeyer : Keyer<Any> { | ||
override fun key(data: Any, options: Options): String { | ||
return data.toString() | ||
} | ||
} | ||
|
||
@Suppress("UNCHECKED_CAST") | ||
internal fun <T : Any> CacheDisabledKeyer(): Keyer<T> = CacheDisabledKeyer as Keyer<T> | ||
|
||
private object CacheDisabledKeyer : Keyer<Any> { | ||
override fun key(data: Any, options: Options): String? { | ||
return null | ||
} | ||
} |