shared: Add SetHealthCheck to interface

This commit is contained in:
世界 2024-11-09 11:38:32 +08:00
parent 11ffb962ae
commit 72ff654ee0
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 16 additions and 3 deletions

View file

@ -24,6 +24,8 @@ type Cache[K comparable, V any] interface {
// Lifetime 0 means "forever".
SetLifetime(lifetime time.Duration)
SetHealthCheck(healthCheck HealthCheckCallback[K, V])
// SetOnEvict sets the OnEvict callback function.
// The onEvict function is called for each evicted lru entry.
SetOnEvict(onEvict OnEvictCallback[K, V])