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 7b4fd4aeae - Show all commits
@@ -47,6 +47,15 @@ public class Session implements Runnable {
return this.id; return this.id;
} }
/**
* Returns the TransportLayer of this session
*
* @return the transport layer of the session
*/
public TransportLayer getTransport() {
return transport;
}
/** Starts the session thread. */ /** Starts the session thread. */
public void start() { public void start() {
thread.start(); thread.start();