1.4.5.2
This commit is contained in:
11
EdgeNode/internal/utils/ttlcache/item.go
Normal file
11
EdgeNode/internal/utils/ttlcache/item.go
Normal file
@@ -0,0 +1,11 @@
|
||||
package ttlcache
|
||||
|
||||
type Item[T any] struct {
|
||||
Value T
|
||||
expiresAt int64
|
||||
}
|
||||
|
||||
// ExpiresAt 获取过期时间
|
||||
func (this *Item[T]) ExpiresAt() int64 {
|
||||
return this.expiresAt
|
||||
}
|
||||
Reference in New Issue
Block a user