1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00
This commit is contained in:
John Guo 2023-02-07 14:06:26 +08:00 committed by GitHub
parent 38c9cac578
commit 5f0641f348
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -85,7 +85,9 @@ func (q *Queue) Pop() interface{} {
// Notice: It would notify all goroutines return immediately,
// which are being blocked reading using Pop method.
func (q *Queue) Close() {
q.closed.Set(true)
if !q.closed.Cas(false, true) {
return
}
if q.events != nil {
close(q.events)
}