(socket server) add a callback to the ConnectionState to be invoked when the connection is terminated. This will be used by the SocketServer in the future to know on time that the associated connection thread can be terminated.

This commit is contained in:
Benjamin Sergeant
2020-08-15 16:03:40 -07:00
parent 261095fa12
commit 785842de03
6 changed files with 33 additions and 3 deletions

View File

@ -2,6 +2,10 @@
All changes to this project will be documented in this file.
## [10.2.2] - 2020-08-15
(socket server) add a callback to the ConnectionState to be invoked when the connection is terminated. This will be used by the SocketServer in the future to know on time that the associated connection thread can be terminated.
## [10.2.1] - 2020-08-15
(socket server) do not create a select interrupt object everytime when polling for notifications while waiting for new connections, instead use a persistent one which is a member variable