split the Session.Close(error) in Close() and CloseWithError(error)

This commit is contained in:
Marten Seemann 2018-07-04 17:04:50 +07:00
parent 2bc5b7f532
commit 8b2992a243
22 changed files with 168 additions and 105 deletions

View file

@ -54,11 +54,11 @@ func (h *packetHandlerMap) Remove(id protocol.ConnectionID) {
})
}
func (h *packetHandlerMap) Close(err error) {
func (h *packetHandlerMap) Close() error {
h.mutex.Lock()
if h.closed {
h.mutex.Unlock()
return
return nil
}
h.closed = true
@ -68,11 +68,12 @@ func (h *packetHandlerMap) Close(err error) {
wg.Add(1)
go func(handler packetHandler) {
// session.Close() blocks until the CONNECTION_CLOSE has been sent and the run-loop has stopped
_ = handler.Close(err)
_ = handler.Close()
wg.Done()
}(handler)
}
}
h.mutex.Unlock()
wg.Wait()
return nil
}