mirror of
https://gitee.com/johng/gf.git
synced 2024-12-05 21:59:05 +08:00
25 lines
847 B
Go
25 lines
847 B
Go
// Copyright 2018 gf Author(https://gitee.com/johng/gf). All Rights Reserved.
|
||
//
|
||
// This Source Code Form is subject to the terms of the MIT License.
|
||
// If a copy of the MIT was not distributed with this file,
|
||
// You can obtain one at https://gitee.com/johng/gf.
|
||
// 异步工作协程.
|
||
|
||
package ghttp
|
||
|
||
// 开启异步队列处理循环,该异步线程与Server同生命周期
|
||
func (s *Server) startCloseQueueLoop() {
|
||
go func() {
|
||
for {
|
||
if v := s.closeQueue.PopFront(); v != nil {
|
||
r := v.(*Request)
|
||
s.callHookHandler(r, "BeforeClose")
|
||
// 关闭当前会话的Cookie
|
||
r.Cookie.Close()
|
||
// 更新Session会话超时时间
|
||
r.Session.UpdateExpire()
|
||
s.callHookHandler(r, "AfterClose")
|
||
}
|
||
}
|
||
}()
|
||
} |