mirror of
https://github.com/praktimarc/kst4contest.git
synced 2026-09-11 19:55:40 +02:00
Session-based ON4KST connection lifecycle: Each socket, reader, writer, message bus and queue now belongs to an explicitly identified connection session. Delayed threads from an obsolete connection can therefore no longer process data or close its replacement. ONLINE is reported only after the login has been accepted and all requested user lists have been received. Connection setup, login and synchronisation use bounded timeouts, while heartbeats, missing inbound traffic, EOF and read or write failures trigger controlled reconnect attempts with backoff where appropriate. Validated ON4KST protocol commands: Outgoing frames are built centrally and checked for valid categories, locators and prohibited frame delimiters. Because ON4KST maintains one locator per TCP session, the main locator is used for both chat categories and a conflicting secondary configuration is logged instead of sending contradictory commands to the server.
25 lines
590 B
Java
25 lines
590 B
Java
module praktiKST {
|
|
requires javafx.controls;
|
|
requires javafx.fxml;
|
|
requires javafx.web;
|
|
requires jdk.xml.dom;
|
|
requires java.sql;
|
|
requires javafx.media;
|
|
requires jdk.jsobject;
|
|
requires jlayer;
|
|
requires java.net.http;
|
|
requires java.desktop;
|
|
requires jdk.crypto.ec;
|
|
requires jdk.net;
|
|
requires org.junit.jupiter.api;
|
|
requires org.mockito;
|
|
exports kst4contest.controller.interfaces;
|
|
exports kst4contest.controller;
|
|
exports kst4contest.locatorUtils;
|
|
exports kst4contest.model;
|
|
exports kst4contest.view;
|
|
|
|
|
|
opens kst4contest.view.map to javafx.web;
|
|
}
|