Add: SessionHandle to store Session and two worker threads

This commit is contained in:
Lars Simon Winzer
2026-03-19 19:01:33 +01:00
parent ec5ebe5d42
commit 247f16e26e
@@ -0,0 +1,4 @@
package ch.unibas.dmi.dbis.cs108.casono.server.network.sessions;
/** The SessionHandle stores the session and the two worker threads associated with the session */
record SessionHandle(Session session, Thread reader, Thread writer) {}