Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2010, 2025 BSI Business Systems Integration AG
* Copyright (c) 2010, 2026 BSI Business Systems Integration AG
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
Expand Down Expand Up @@ -69,11 +69,18 @@ protected void sessionStopped(final IClientSession session) {
}
if (userSessions.isEmpty()) {
m_userToSessions.remove(userId);
execAllSessionsStopped(userId);
}
}
}
}

/**
* Called when all client sessions of a user have been stopped.
*/
protected void execAllSessionsStopped(String userId) {
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

consider rename to execAllUserSessionsStopped?

}

/**
* Register the session after session start. This method is expected to be called in the context of the specific
* session.
Expand Down
Loading