Go channel 实现自增长ID

复制代码
复制代码
 1 //autoInc.go
 2 
 3 package autoInc
 4 
 5 type AutoInc struct {
 6     start, step int
 7     queue       chan int
 8     running     bool
 9 }
10 
11 func New(start, step int) (ai *AutoInc) {
12     ai = &AutoInc{
13         start:   start,
14         step:    step,
15         running: true,
16         queue:   make(chan int, 4),
17     }
18 
19     go ai.process()
20     return
21 }
22 
23 func (ai *AutoInc) process() {
24     defer func() { recover() }()
25     for i := ai.start; ai.running; i = i + ai.step {
26         ai.queue <- i
27     }
28 }
29 
30 func (ai *AutoInc) Id() int {
31     return <-ai.queue
32 }
33 
34 func (ai *AutoInc) Close() {
35     ai.running = false
36     close(ai.queue)
37 }
复制代码

转自:http://mikespook.com/2012/06/golang-channel-%E6%9C%89%E8%B6%A3%E7%9A%84%E5%BA%94%E7%94%A8/

posted @   yumuxu  阅读(692)  评论(0编辑  收藏  举报
编辑推荐:
· .NET开发智能桌面机器人:用.NET IoT库编写驱动控制两个屏幕
· 用纯.NET开发并制作一个智能桌面机器人:从.NET IoT入门开始
· 一个超经典 WinForm,WPF 卡死问题的终极反思
· ASP.NET Core - 日志记录系统(二)
· .NET 依赖注入中的 Captive Dependency
阅读排行:
· 几个自学项目的通病,别因为它们浪费了时间!
· 在外漂泊的这几年总结和感悟,展望未来
· 如何在 ASP.NET Core 中实现速率限制?
· 博客园 & 1Panel 联合终身会员上线
· Kubernetes 知识梳理及集群搭建
点击右上角即可分享
微信分享提示
评论
收藏
关注
推荐
深色
回顶
展开