don't add redundant IDs to batch timers, close data channel properly

This commit is contained in:
Iris Lightshard 2024-08-22 19:49:17 -06:00
parent bb7d4e2f7d
commit 7a2eb99eb6
Signed by: nilix
GPG Key ID: 688407174966CAF3
2 changed files with 8 additions and 3 deletions

View File

@ -10,9 +10,11 @@ export class BatchTimer {
}
public queue(id: string, timeout: number){
this._timer = new Date().getTime() + timeout;
this._batch.push(id);
setTimeout(this.checkBatch.bind(this), timeout);
if (!this._batch.includes(id)) {
this._timer = new Date().getTime() + timeout;
this._batch.push(id);
setTimeout(this.checkBatch.bind(this), timeout);
}
}
private checkBatch() {

View File

@ -98,6 +98,7 @@ func (self *BBSServer) subscribeHandler(w http.ResponseWriter, r *http.Request)
case <-ctx.Done():
fmt.Println("subscriber has disconnected")
close(s.data)
return //ctx.Err()
}
}
@ -109,6 +110,8 @@ func (self *BBSServer) subscribeHandler(w http.ResponseWriter, r *http.Request)
// block on the data channel, serializing and passing the data to the subscriber
listen([]chan models.SocketData{s.data}, s.msgs)
fmt.Println("data listener is done!")
if errors.Is(err, context.Canceled) {
return
}