4 Star 6 Fork 4

王军/golib

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
safe_buffer.go 563 Bytes
一键复制 编辑 原始数据 按行查看 历史
王军 提交于 2024-11-14 21:34 . 重构包名
package serial
import (
"sync"
"gitee.com/haodreams/libs/easy"
)
// sb Tread safe
type sb struct {
b easy.FixedBuffer
rw sync.Mutex
}
// Read read
func (b *sb) Read(p []byte) (n int, err error) {
b.rw.Lock()
defer b.rw.Unlock()
return b.b.Read(p)
}
// Write write
func (b *sb) Write(p []byte) (n int, err error) {
b.rw.Lock()
defer b.rw.Unlock()
return b.b.Write(p)
}
// Reset reset
func (b *sb) Reset() {
b.rw.Lock()
defer b.rw.Unlock()
b.b.Reset()
}
// Len len
func (b *sb) Len() int {
b.rw.Lock()
defer b.rw.Unlock()
return b.b.Len()
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/haodreams/golib.git
git@gitee.com:haodreams/golib.git
haodreams
golib
golib
3241ae00b8fa

搜索帮助

0d507c66 1850385 C8b1a773 1850385