1 Star 0 Fork 0

lesenro/evio

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
notequeue.go 879 Bytes
一键复制 编辑 原始数据 按行查看 历史
tidwall 提交于 2020-01-07 09:33 . Reuse queue allocation
// Copyright 2018 Joshua J Baker. All rights reserved.
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.
package internal
import "sync"
// this is a good candiate for a lock-free structure.
type noteQueue struct {
mu sync.Mutex
notes []interface{}
}
func (q *noteQueue) Add(note interface{}) (one bool) {
q.mu.Lock()
q.notes = append(q.notes, note)
n := len(q.notes)
q.mu.Unlock()
return n == 1
}
func (q *noteQueue) ForEach(iter func(note interface{}) error) error {
q.mu.Lock()
if len(q.notes) == 0 {
q.mu.Unlock()
return nil
}
notes := q.notes
q.notes = nil
q.mu.Unlock()
for _, note := range notes {
if err := iter(note); err != nil {
return err
}
}
q.mu.Lock()
if q.notes == nil {
for i := range notes {
notes[i] = nil
}
q.notes = notes[:0]
}
q.mu.Unlock()
return nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/lesenro/evio.git
git@gitee.com:lesenro/evio.git
lesenro
evio
evio
v1.0.4

搜索帮助

0d507c66 1850385 C8b1a773 1850385