Add SessionReader and SessionWriter worker threads for session #198

Merged
lars.winzer merged 20 commits from feat/session-reader-and-writer-thread into main 2026-03-20 17:39:44 +01:00
Showing only changes of commit 0bb5a1e940 - Show all commits
@@ -55,7 +55,7 @@ public class SessionManager {
* @param id of the client to disconnect * @param id of the client to disconnect
*/ */
public void disconnect(SessionId id) { public void disconnect(SessionId id) {
SessionHandle handle = sessions.get(id); SessionHandle handle = sessions.remove(id);
if (handle == null) { if (handle == null) {
logger.warn( logger.warn(
"Requested to disconnect client with id {}. Failed as client is not found", "Requested to disconnect client with id {}. Failed as client is not found",