ExpiresAt returns a Unix time value indicating when the item will be considered expired. 0 indicates that the item will never expire.
()
| 287 | // ExpiresAt returns a Unix time value indicating when the item will be |
| 288 | // considered expired. 0 indicates that the item will never expire. |
| 289 | func (item *Item) ExpiresAt() uint64 { |
| 290 | return item.expiresAt |
| 291 | } |
| 292 | |
| 293 | // TODO: Switch this to use linked list container in Go. |
| 294 | type list struct { |
no outgoing calls