本文整理汇总了Golang中github.com/zond/diplicity/common.SkinnyContext.BetweenTransactions方法的典型用法代码示例。如果您正苦于以下问题:Golang SkinnyContext.BetweenTransactions方法的具体用法?Golang SkinnyContext.BetweenTransactions怎么用?Golang SkinnyContext.BetweenTransactions使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/zond/diplicity/common.SkinnyContext
的用法示例。
在下文中一共展示了SkinnyContext.BetweenTransactions方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: Schedule
func (self *Phase) Schedule(c common.SkinnyContext) error {
if !self.Resolved {
ep, err := epoch.Get(c.DB())
if err != nil {
return err
}
timeout := self.Deadline - ep
c.BetweenTransactions(func(c common.SkinnyContext) {
if timeout > 0 {
time.AfterFunc(timeout, func() {
if err := self.autoResolve(c); err != nil {
c.Errorf("Failed resolving %+v after %v: %v", self, timeout, err)
}
})
c.Debugf("Scheduled resolution of %v/%v in %v at %v", self.GameId, self.Id, timeout, time.Now().Add(timeout))
} else {
c.Debugf("Resolving %v/%v immediately, it is %v overdue", self.GameId, self.Id, -timeout)
if err := self.autoResolve(c); err != nil {
c.Errorf("Failed resolving %+v immediately: %v", self, err)
}
}
})
}
return nil
}