Fetch the repository succeeded.
package cache
import (
"fmt"
"time"
)
type _TimeoutItem struct {
_DurationItem
use bool
}
func (c *_TimeoutItem) Next(t time.Time) *time.Time {
if c.use {
c.use = false
c.val, c.err = c.get()
return c.sch.Next(t)
}
return nil
}
func (c *_TimeoutItem) setUse() {
c.use = true
}
type TimeoutCache struct {
Cache
}
func (c *TimeoutCache) Add(name string, sec int, get PullHandle) {
e := &_TimeoutItem{
_DurationItem: _DurationItem{
get: get,
sch: c.handle(sec),
},
use: true,
}
c.cron.AddScheduleJob(NegativeTimeoutPrefix+name, e)
}
func (c *TimeoutCache) Get(name string) (interface{}, error) {
sj := c.cron.Job(NegativeTimeoutPrefix + name)
if sj == nil {
return nil, fmt.Errorf("key [%s] is no find", name)
}
j := sj.(*_TimeoutItem)
j.setUse()
return j.Value()
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。