added running flag to SessionData

This commit is contained in:
2022-02-01 02:03:13 +01:00
parent 34695f1132
commit c5debe13e8
7 changed files with 125 additions and 59 deletions

View File

@@ -26,4 +26,8 @@ public class SessionData {
* Configuration of the session
*/
private final @NonNull Configuration configuration;
/**
* Whether the session is running.
*/
private final boolean running;
}